/* ========== FAQ Accordion Section ========== */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-accordion-item {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-accordion-item:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.faq-accordion-item.open {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.faq-accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    user-select: none;
    transition: background 0.2s ease;
}

.faq-accordion-header:hover {
    background: var(--bg-alt);
}

.faq-question {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--text-dark);
    flex: 1;
    padding-right: 16px;
}

.faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--text-muted);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s ease;
    flex-shrink: 0;
}

.faq-accordion-item.open .faq-icon {
    transform: rotate(45deg);
    color: var(--primary);
}

.faq-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    opacity: 0;
}

.faq-accordion-item.open .faq-accordion-content {
    max-height: 1500px;
    opacity: 1;
}

.faq-answer {
    padding: 0 24px 24px 24px;
}

.faq-answer p {
    margin: 0 0 16px 0;
    color: var(--text-body);
    font-size: 1rem;
    line-height: 1.8;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer strong {
    color: var(--primary);
}

/* FAQ Responsive */
@media (max-width: 768px) {
    .faq-accordion-header {
        padding: 16px 20px;
    }

    .faq-question {
        font-size: 0.9375rem;
    }

    .faq-answer {
        padding: 0 20px 20px 20px;
    }

    .faq-answer p {
        font-size: 0.9375rem;
    }
}