.faq-section-f7q2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    padding: 40px 16px;
    margin-top: 8px;
    background: #ffffff;
    border-radius: 20px;
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
}

.faq-headline-f7q2 {
    font-size: 32px;
    font-family: 'Proxima Nova Advanced', 'Proxima Nova', sans-serif;
    font-feature-settings: 'ss04' on, 'case' on;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.04em;
    color: #282834;
    text-align: center;
    margin: 0;
}

.faq-list-f7q2 {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    max-width: 928px;
}

.faq-item-f7q2 {
    background: #f4f5f9;
    border-radius: 16px;
    overflow: hidden;
    transition: background 0.15s ease-out;
}

.faq-question-f7q2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    padding: 20px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    font-feature-settings: 'ss04' on, 'case' on;
    font-weight: 600;
    line-height: 1.4;
    color: #282834;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    transition: background 0.15s ease-out;
}

.faq-item-f7q2:hover {
    background: #edeef3;
}

.faq-question-text-f7q2 {
    flex: 1;
}

.faq-chevron-f7q2 {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: #282834;
    transition: transform 0.3s ease-out;
}

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

.faq-answer-f7q2 {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: max-height 0.4s cubic-bezier(0.05, 0.7, 0.1, 1),
                opacity 0.4s cubic-bezier(0.05, 0.7, 0.1, 1),
                transform 0.4s cubic-bezier(0.05, 0.7, 0.1, 1);
}

.faq-item-active-f7q2 .faq-answer-f7q2 {
    max-height: 500px;
    opacity: 1;
    transform: translateY(0);
}

.faq-answer-text-f7q2 {
    padding: 0 20px 20px 20px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    font-feature-settings: 'ss04' on, 'case' on;
    line-height: 1.6;
    color: #646587;
    margin: 0;
}

@media (min-width: 1024px) {
    .faq-headline-f7q2 {
        font-size: clamp(40px, 5vw, 72px);
    }

    .faq-section-f7q2 {
        gap: 80px;
        padding: 80px 40px;
    }

    .faq-question-f7q2 {
        padding: 40px;
        font-size: 18px;
    }

    .faq-answer-text-f7q2 {
        padding: 0 40px 40px 40px;
    }
}
