:root {
    --brand-red: #FF002B;
}

.faq-section {
    padding: 60px 0;
    background: #FCFCFD;
}

.faq-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
    color: #111827;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 12px;
}

.faq-item {
    background: #ffffff;
    border-radius: 16px;
    padding: 16px 20px;
    border: 1px solid transparent;
    box-shadow: 0 10px 30px -12px rgba(0, 0, 0, 0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.is-active {
    background-color: #ffffff;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.08);
    border-color: #f3f4f6;
}

.faq-item .icon-bg {
    transition: all 0.4s ease;
}

.faq-item.is-active .icon-bg {
    background-color: var(--brand-red);
    color: #ffffff;
}

.question-title {
    color: #0f172a;
    transition: color 0.3s ease;
}

.faq-item.is-active .question-title {
    color: var(--brand-red);
}

.chevron {
    transition: transform 0.5s;
}

.faq-item.is-active .chevron {
    transform: rotate(180deg);
}

.faq-question {
    width: 100%;
    text-align: left;
    background: transparent;
    border: 0;
    font-weight: 600;
    font-size: 1rem;
    color: #111827;
    cursor: pointer;
    padding: 4px 0;
}

.faq-item .answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.7s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s ease, filter 0.4s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
    filter: blur(4px);
    transform: translateY(-8px);
    border-top: 1px solid #f3f4f6;
    margin-top: 8px;
    color: #4b5563;
    line-height: 1.65;
}

.faq-item.is-active .answer {
    max-height: 400px;
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
    padding-top: 1.25rem;
    padding-bottom: 0.75rem;
}

@media (max-width: 640px) {
    .faq-section {
        padding: 40px 0;
    }

    .faq-section h2 {
        font-size: 1.6rem;
    }

    .faq-item {
        border-radius: 12px;
        padding: 14px 16px;
    }
}