.faq__text.h2 > p {
    color: #4A4C4E;
}

body .faq__text.h2 p > strong {
    color: #FFFF;
}

.accordion-item {
    margin-bottom: 12px;
    border-radius: 20px;
}

.accordion-item:last-child {
    margin-bottom: 0;
}

.accordion-header {
    width: 100%;
    padding: 20px;
    border: none;
    text-align: left;
    cursor: pointer;
    transition: background 0.3s;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.accordion-header.h7 {
    font-weight: 500;
}

.accordion-header svg {
    transition: all ease 0.3s;
    transform: rotate(45deg);
}

.acc-open svg {
    transform: rotate(180deg);
    transition: all ease 0.3s;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 20px;
}

.accordion-content a {
    font-size: 16px;
    color: #C2C2C2;
    display: flex;
    align-items: center;
    gap: 6px;
}

.accordion-content a::before {
    content: '';
    width: 0px;
    height: 0px;
    background: #F7AE0D;
    border-radius: 50%;
    transition: all ease 0.3s;
}

.accordion-content p {
    margin-bottom: 16px;
}

.accordion-content p:last-child {
    margin-bottom: 0px;
}

.accordion-content a:hover {
    color: #F7AE0D;
}

.accordion-content a:hover::before {
    width: 8px;
    height: 8px;
    transition: all ease 0.3s;
}

.accordion-content.open {
    padding-bottom: 24px;
}

.accordion__svg-back {
    width: 40px;
    height: 40px;
    background: #8FC9E8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.faq__accordion {
    z-index: 111;
}

@media screen and (min-width: 1024px) {
    .faq__block {
        display: flex;
        gap: 60px;
        position: relative;
    }

    .faq__text {
        flex-basis: 585px;
    }

    .faq__accordion {
        flex-basis: 615px;
    }

    .faq__back-text {
        position: absolute;
        max-width: 760px;
        max-height: 435px;
        display: block;
        bottom: -30px;
    }
}


@media screen and (max-width: 1023.98px) {
    .faq__text {
        margin-bottom: 24px;
    }
}