.service-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card .price {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--color-terracotta);
  margin-block: var(--space-sm);
}

.service-card p {
  flex-grow: 1;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  counter-reset: step;
}

@media (max-width: 780px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
}

.step {
  position: relative;
  padding-left: var(--space-lg);
}

.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background: var(--color-gold);
  color: var(--color-navy-deep);
  font-family: var(--font-heading);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-list {
  max-width: 720px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.faq-item h3 {
  margin-bottom: var(--space-xs);
}
