.faqSection {
    margin-bottom: 15%;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 10px;

}

.faq-item {
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
    border: none;
    /* Bg/White */
    background: #FFFFFF;
    border-radius: 10px;

}

.faq-question {
    padding: 40px;
    cursor: pointer;
    font-weight: bold;
    position: relative;

    /* Desctop/H7 */
    font-family: 'Onest';
    font-style: normal;
    font-weight: 700;
    font-size: 22px;
    line-height: 120%;
    /* identical to box height, or 29px */

    /* Txt/Dark blu */
    color: #152572;


    /* Inside auto layout */
    flex: none;
    order: 0;
    flex-grow: 0;

}

.faq-question::after {
    content: '+';
    color: #2D84E3;
    font-size: 40px;
    position: absolute;
    right: 20px;
    font-weight: 200;
    top: 40px;
    transition: transform 0.3s ease;
}

.faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
    color: #2D84E3;
    font-size: 40px;
    position: absolute;
    right: 20px;
    font-weight: 200;
    top: 40px;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    padding: 0 15px;
    overflow: hidden;
    color: #333;
    transition: max-height 0.3s ease, padding 0.3s ease;

    /* Desctop/Text 1 */
    font-family: 'Onest';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;

    /* Txt/Dark blu */
    color: #152572;

}

.faq-answer.open {
    max-height: 300px;
    padding: 15px;
    padding: 40px;
    padding-top: 0px !important;
}/* Общий стиль секции */