.faq-new {
    margin: 80px 0;
    display: flex;
    gap: 80px;
}
.faq-new__text-block {
    max-width: 618px;
}

.faq-new__text-title {
    margin-bottom: 12px;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 52px;
    color: rgba(51, 51, 51, 1);
}

.faq-new__text-descr {
    margin-bottom: 48px;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    color: rgba(90, 97, 108, 1);
}

.faq-new__text-link {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    padding: 12px 38.5px;
    background-color: rgba(59, 97, 185, 1);
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    transition: background-color .3s ease-in-out;
    width: fit-content;
}

.faq-new__text-link:hover {
    color: #fff;
    background-color: #34549E;
}

.faq-new__faqs {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.faq-new__item {
    padding: 28px;
    background-color: rgba(255, 255, 255, 1);
    border-radius: 12px;
    cursor: pointer;
    transition: box-shadow .3s ease-in-out;
}

.faq-new__item:hover {
    box-shadow: 0px 0px 32px 0px rgba(0, 0, 0, 0.06);
}

.faq-new__title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.faq-new__name {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    color: rgba(51, 51, 51, 1);
}

.faq-new__answer {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: rgba(17, 24, 39, 1);
}

.faq-new__answer.visible {
    margin-top: 24px;
}

.faq-new__arrow {
    min-width: 24px;
    height: 24px;
}

.faq-new__item.active .faq-new__arrow {
    transform: rotate(180deg);
}

@media (max-width: 1200px) {
    .faq-new__text-block {
        max-width: 50%;
    }
}

@media (max-width: 991px) {
    .faq-new {
        flex-direction: column;
        gap: 32px;
    }

    .faq-new__text-block {
        max-width: 100%;
    }

    .faq-new__text-title {
        font-size: 24px;
        line-height: 30px;
    }

    .faq-new__text-descr {
        margin-bottom: 32px;
        font-size: 15px;
        line-height: 22px;
    }

    .faq-new__text-link {
        padding: 10px;
        border-radius: 8px;
        font-size: 15px;
        line-height: 20px;
        width: 200px;
    }

    .faq-new__item {
        padding: 20px;
    }

    .faq-new__name {
        font-size: 16px;
        line-height: 22px;
    }

    .faq-new__answer.visible {
        margin-top: 16px;
    }

    .faq-new__answer {
        font-size: 15px;
        line-height: 24px;
    }
}