/**
 * FAQ page (faq.html) styles
 * Accordion expand/collapse animation
 */

/* ── FAQ Accordion ────────────────────────────────────── */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-item.open .faq-answer {
    max-height: 500px;
}
.faq-item.open .faq-chevron {
    transform: rotate(180deg);
}
.faq-chevron {
    transition: transform 0.3s ease;
}
