.faq .faq-body {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 50px;
}

.faq .faq-body > div:first-child {
    max-width: 440px;
}
.faq .faq-body > div:last-child {
    max-width: 820px;
}

.faq h2 {
    color: #000;
    font-size: 60px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
    letter-spacing: -2.4px !important;
    margin: 0;
}

.faq .elements {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.faq .element {
    padding-bottom: 40px;
    border-bottom: 1px solid #000;
}

.faq .element h3 {
    color: #000;
    font-size: 40px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
    letter-spacing: -2.4px !important;
    cursor: pointer;
    position: relative;
    padding-right: 56px;
    margin: 0;
}

.faq .element h3::after {
    content: '+';
    display: flex;
    justify-content: center;
    width: 46px;
    height: 46px;
    position: absolute;
    top: 0;
    right: 0;
    color: #fff;
    font-size: 20px;
    line-height: 42px;
    border-radius: 40px;
    border: 1px solid #000;
    background: #2E56FF;
}

.faq .element.active h3::after {
    content: '−';
    background: #000;
}

.faq .element p {
    color: #000;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    letter-spacing: -0.96px;
    margin: 0 0 20px;
}
.faq .element p:last-child {
    margin-bottom: 0;
}

.faq .element > div {
    max-height: 0;
    overflow: hidden;
}
.faq .element.active > div {
    padding-top: 40px;
}

@media screen and (max-width: 1760px) {
    .faq h2 {
        font-size: 50px;
    }
}

@media screen and (max-width: 991px) {
    .faq .faq-body {
        flex-direction: column;
        gap: 30px;
    }

    .faq h2 {
        color: #000;
        font-size: 40px;
        font-style: normal;
        font-weight: 500;
        line-height: 100%;
        letter-spacing: -1.92px !important;
    }

    .faq .element {
        padding-bottom: 30px;
    }

    .faq .element h3 {
        color: #000;
        font-size: 30px;
        font-weight: 400;
        line-height: 120%;
        letter-spacing: -1.2px !important;
    }

    .faq .element p {
        font-size: 20px;
        font-weight: 400;
        line-height: 130%;
    }

    .faq .element.active > div {
        padding-top: 12px;
    }
}
