/* ============================================================
   FRESH AIR PILATES — FAQ Page (faq.css)
   ============================================================ */

.faq-list { margin-bottom: 4rem; }

.faq-item {
  border-bottom: 1px solid rgba(196,185,176,0.4);
}

.faq-trigger {
  width: 100%; text-align: left;
  padding: 1.75rem 0;
  display: flex; justify-content: space-between; align-items: center; gap: 1.5rem;
  background: none; border: none; cursor: pointer;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; font-weight: 400; color: var(--text-dark);
  transition: color var(--trans);
}

.faq-trigger:hover { color: var(--sage); }
.faq-trigger[aria-expanded="true"] { color: var(--sage); }

.faq-icon {
  width: 28px; height: 28px; flex-shrink: 0;
  border: 1.5px solid var(--stone); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--text-light);
  transition: all var(--trans);
  font-family: 'Jost', sans-serif; font-weight: 300;
}

.faq-trigger[aria-expanded="true"] .faq-icon {
  background: var(--sage); border-color: var(--sage);
  color: white; transform: rotate(45deg);
}

.faq-body {
  padding-bottom: 1.75rem;
  animation: fadeIn 0.3s ease;
}

.faq-body[hidden] { display: none; }

.faq-body p { font-size: 0.94rem; }
.faq-body p + p { margin-top: 0.85rem; }

/* CTA block */
.faq-cta {
  background: var(--sage-pale);
  padding: 3.5rem;
  border-radius: 8px;
  text-align: center;
}

.faq-cta h3 { margin-bottom: 0.6rem; }
.faq-cta p  { margin-bottom: 1.75rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .faq-trigger { padding: 1.5rem 0; font-size: 1.05rem; }
  .faq-cta { padding: 2rem 1.5rem; }
  .faq-icon { width: 32px; height: 32px; }
}
