/* Process Steps Layout */

.process-steps {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
  gap: 2rem;
}

.step {
  text-align: center;
  flex: 1;
}

.step-number {
  width: 60px;
  height: 60px;
  background-color: var(--md-sys-color-primary);
  color: var(--md-sys-color-on-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  font-weight: 700;
}

.step h3 {
  font-family: var(--md-sys-typescale-title-large-font-family);
  font-size: var(--md-sys-typescale-title-large-font-size);
  font-weight: var(--md-sys-typescale-title-large-font-weight);
  margin-bottom: 0.5rem;
  color: var(--md-sys-color-on-background);
}

.step p {
  color: var(--md-sys-color-on-surface-variant);
  font-size: var(--md-sys-typescale-body-medium-font-size);
}

.step-arrow {
  color: var(--md-sys-color-on-surface-variant);
  font-size: 1.5rem;
}

/* Responsive */
@media (max-width: 768px) {
  .process-steps {
    flex-direction: column;
    gap: 2rem;
  }

  .step-arrow {
    transform: rotate(90deg);
  }
}
