/* ==========================================================================
   FAQ Section
   ========================================================================== */

.faq-section {
    padding: var(--spacing-4xl) 0;
}

.faq-list {
    max-width: 1005px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 20px;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 24px;
    font-weight: var(--font-medium);
    color: var(--color-black);
}

.faq-icon {
    width: 28px;
    height: 29px;
    background: var(--color-bg-gray);
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.faq-icon svg {
    width: 17px;
    height: 17px;
    transition: transform 0.3s;
}

.faq-item.active .faq-icon svg {
    transform: rotate(90deg);
}

.faq-answer {
    display: none;
    padding: 0 20px 20px;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    font-size: 16px;
    color: var(--color-text-light);
    line-height: 1.6;
}


/* ==========================================================================
   FAQ Accordion (Enhanced Animation)
   ========================================================================== */

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    display: block;
    padding: 0 20px;
}

.faq-item.active .faq-answer {
    padding-bottom: 20px;
}

