/* FAQ Block */

/* FAQ Title */
.faq__title {
    margin: 0 0 30px;
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: #1a4d7a;
    line-height: 1.2;
}

/* FAQ List */
.faq__list {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* FAQ Item */
.faq__item {
    margin-bottom: 0;
    border-bottom: 1px solid #e0e0e0;
    list-style-type: none !important;
    margin-left: 0 !important;
    margin-bottom: 0 !important;
}

.faq__item:first-child {
    border-top: 1px solid #e0e0e0;
}

/* FAQ Question Button */
.faq__question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    background-color: #f5f5f5;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background-color 0.2s ease;
}

.faq__question:hover {
    background-color: #eeeeee;
}

/*.faq__question:focus {*/
/*    outline: 2px solid #1a4d7a;*/
/*    outline-offset: -2px;*/
/*}*/

/* FAQ Question Text */
.faq__question-text {
    color: #1C2C5D;
    font-family: Ubuntu;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

/* FAQ Icon Container */
.faq__icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* FAQ Icon SVG */
.faq__icon-svg {
    width: 32px;
    height: 32px;
    display: block;
    transition: opacity 0.3s ease;
}

/* По умолчанию показываем иконку минуса */
.faq__icon-svg--minus {
    display: none;
}

.faq__icon-svg--plus {
    display: block;
}

/* Для активного элемента показываем иконку плюса */
.faq__item--active .faq__icon-svg--minus {
    display: block;
}

.faq__item--active .faq__icon-svg--plus {
    display: none;
}

/* FAQ Answer Container */
.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: #FFF;
}

.faq__item--active .faq__answer {
    max-height: 500px;
}

/* FAQ Answer Text */
.faq__answer-text {
    color: #363636;
    font-family: Arial;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px !important;
    padding: 24px;
}
.faq_title {
    color: #1C2C5D;
    font-family: Arial;
    font-size: 25px;
    font-style: normal;
    font-weight: 700;
    line-height: 22px; /* 88% */
    text-transform: uppercase;
    margin-bottom: 32px;
}
/* Responsive adjustments */
@media (max-width: 768px) {
    .faq_title {
        color: #1C2C5D;
        font-family: Arial;
        font-size: 22px;
        font-style: normal;
        font-weight: 700;
        line-height: 22px; /* 100% */
        text-transform: uppercase;
    }
    .faq {
        padding: 30px 15px;
    }

    .faq__title {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .faq__question {
        padding: 15px;
    }

    /*.faq__question-text {*/
    /*    font-size: 15px;*/
    /*}*/

    .faq__answer-text {
        padding: 0 15px 15px 15px;
        font-size: 13px;
    }
}
