/* ================= FAQ PAGE ================= */
.faq-section { padding: 60px 0 80px; }
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; background: var(--white); }
.faq-question { display: flex; justify-content: space-between; align-items: center; padding: 20px 24px; cursor: pointer; font-weight: 700; color: var(--navy); gap: 16px; }
.faq-question .icon { flex-shrink: 0; color: var(--blue); transition: transform 0.2s ease; }
.faq-item.open .faq-question .icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.25s ease; padding: 0 24px; color: var(--text-gray); }
.faq-item.open .faq-answer { max-height: 300px; padding: 0 24px 20px; }
