/* Page-specific styles for faq.html. Fonts, nav, footer, buttons and cards
   all come from assets/styles.css. */

html, body { background: #fff; }

.faq-accordion { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }

.faq-item { border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  background: #fff;
  border: none;
  text-align: left;
  font-family: var(--font-text);
  font-weight: 600;
  font-size: 16px;
  color: var(--ink);
  cursor: pointer;
}
.faq-toggle { color: var(--brand); font-size: 20px; transition: transform .25s var(--ease); flex-shrink: 0; }
.faq-item.open .faq-toggle { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s var(--ease);
  padding: 0 22px;
  color: var(--muted);
}
.faq-item.open .faq-answer { max-height: 400px; padding: 0 22px 20px; }
.faq-answer p { margin: 0; line-height: 1.6; }

.faq-cta { text-align: center; margin-top: 50px; }
.faq-cta p { margin-bottom: 12px; }
