.faq-page{}

.faq-hero{
  text-align:center;
}

.faq-hero-inner{
  max-width:600px;
  margin-inline:auto;
  display:flex;
  flex-direction:column;
  gap:var(--space-3);
}

.faq-hero-lead{
  color:var(--color-text-primary);
}

.faq-section h2{
  text-align:center;
}

.faq-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:var(--space-3);
  margin-top:var(--space-4);
}

.faq-item{
  display:flex;
  flex-direction:column;
  gap:var(--space-2);
}

.faq-question{
  text-align:left;
  font-weight:600;
}

.faq-answer{
  max-height:0;
  overflow:hidden;
  opacity:0;
  transition:max-height 0.3s ease, opacity 0.3s ease;
}

.faq-item.active .faq-answer{
  max-height:500px;
  opacity:1;
}

.faq-process-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:var(--space-3);
  margin-top:var(--space-4);
  align-items:start;
}

.faq-image{
  grid-column:span 2;
}

.faq-experience-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:var(--space-4);
  margin-top:var(--space-4);
  align-items:center;
}

.faq-experience-text{
  display:flex;
  flex-direction:column;
  gap:var(--space-3);
}

.faq-cta-inner{
  max-width:500px;
  margin-inline:auto;
  text-align:center;
  display:flex;
  flex-direction:column;
  gap:var(--space-3);
}

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

  .faq-process-grid{
    grid-template-columns:1fr;
  }

  .faq-image{
    grid-column:auto;
  }

  .faq-experience-grid{
    grid-template-columns:1fr;
  }
}
