.faq-section {
    max-width: 1140px;
    margin: 0 auto;
    padding: 40px 20px;
    color: var(--e-global-color-text);
}

.faq-header {
    text-align: center;
    margin-bottom: 40px;
}

.faq-title {
    font-size: 45px !important;
    line-height: 54px !important;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    font-weight: 700 !important;
}

.faq-title span {
    color: #FF8B67;
}

.faq-subtitle {
    font-size: 20px !important;
    line-height: 28px !important;
    color: #666;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq-item {
    border-radius: 8px;
    padding: 12px 20px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid #E6E6E6;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item:not(.active) {
    background: transparent;
}

.faq-item.active {
    background: #F8EBE1;
    padding: 20px;
    border-bottom: none;
}

.faq-item.active+.faq-item {
    border-top: none;
}

/* Remove border from item before active item */
.faq-item:has(+ .faq-item.active) {
    border-bottom: none;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    cursor: pointer;
    padding: 0;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-question h3 {
    margin: 0;
    font-size: 22px !important;
    line-height: 26.63px !important;
    padding-right: 20px;
}

.faq-toggle {
    color: #FF8B67;
    font-size: 24px;
    font-weight: 300;
    flex-shrink: 0;
}

.faq-answer {
    height: 0;
    overflow: hidden;
    transition: none;
    line-height: 22.4px !important;
    font-size: 16px !important;
    color: var(--e-global-color-text);
    padding-top: 15px;
    will-change: height;
}

.faq-item.active .faq-answer {
    height: auto;
    overflow: visible;
}

.faq-answer ul {
    list-style-type: disc !important;
    list-style: disc !important;
    padding-left: 20px !important;
    margin: 10px 0 !important;
}

.faq-answer ul li {
    list-style: disc !important;
    list-style-type: disc !important;
    display: list-item !important;
    margin-bottom: 8px !important;
}

.faq-answer ul li:last-child {
    margin-bottom: 0 !important;
}

@media (max-width: 767px) {
    .faq-section {
        padding: 20px 15px;
    }

    .faq-header {
        margin-bottom: 25px;
    }

    .faq-title {
        font-size: 32px;
        line-height: 38px;
        margin-bottom: 10px;
    }

    .faq-subtitle {
        font-size: 18px;
        line-height: 24px;
        padding: 0 15px;
    }

    .faq-container {
        gap: 6px;
    }

    .faq-item {
        padding: 10px 15px;
    }

    .faq-item.active {
        padding: 15px;
    }

    .faq-question h3 {
        font-size: 16px;
        line-height: 1.4;
    }

    .faq-toggle {
        font-size: 20px;
        padding-top: 2px;
    }

    .faq-answer {
        padding-top: 0;
    }

    .faq-item.active .faq-answer {
        padding-top: 10px;
    }

    .faq-item:not(.active) {
        padding: 0 15px;
    }

    .faq-answer {
        font-size: 14px !important;
        line-height: 20px !important;
    }
}