.faq .acc {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq .acc .acc__card {
    border: 1px solid #333;
    border-radius: 16px;
    color: #333;
    display: flex;
    flex-direction: column;
    font-weight: 400;
    padding: 16px 32px;
}

.faq .acc .acc__card .acc__title::after {
    background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none' viewBox='0 0 32 32'%3E%3Cpath fill='%23333' d='M16 3a13 13 0 1 0 13 13A13.013 13.013 0 0 0 16 3m0 24a11 11 0 1 1 11-11 11.01 11.01 0 0 1-11 11m6-11a1 1 0 0 1-1 1h-4v4a1 1 0 0 1-2 0v-4h-4a1 1 0 0 1 0-2h4v-4a1 1 0 0 1 2 0v4h4a1 1 0 0 1 1 1'/%3E%3C/svg%3E") 0 0 no-repeat;
    background-size: contain;
    display: block;
    position: absolute;
    right: 0;
}

.faq .acc .acc__title::after {
    content: " ";
    height: 26px;
    transition: all .2s ease-in-out;
    width: 26px;
}

.faq .acc__card.active .acc__title::after {
    background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none' viewBox='0 0 32 32'%3E%3Cpath fill='%23fff' d='M22 16a1 1 0 0 1-1 1H11a1 1 0 0 1 0-2h10a1 1 0 0 1 1 1m7 0A13 13 0 1 1 16 3a13.014 13.014 0 0 1 13 13m-2 0a11 11 0 1 0-11 11 11.01 11.01 0 0 0 11-11'/%3E%3C/svg%3E") 0 0 no-repeat;
    background-size: contain;
    display: block;
}

.faq .acc__card .acc__title::after {
    background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' fill='none' viewBox='0 0 32 32'%3E%3Cpath fill='%23333' d='M16 3a13 13 0 1 0 13 13A13.013 13.013 0 0 0 16 3m0 24a11 11 0 1 1 11-11 11.01 11.01 0 0 1-11 11m6-11a1 1 0 0 1-1 1h-4v4a1 1 0 0 1-2 0v-4h-4a1 1 0 0 1 0-2h4v-4a1 1 0 0 1 2 0v4h4a1 1 0 0 1 1 1'/%3E%3C/svg%3E") 0 0 no-repeat;
    background-size: contain;
    display: block;
    position: absolute;
    right: 0;
}

.faq .acc__card.active h4 {
    color: #fff;
}

.faq .acc .acc__title::before {
    display: none;
}

.faq .acc .acc__title {
    color: #333;
    display: flex;
    font-size: 16px;
    justify-content: space-between;
    letter-spacing: .25px;
    line-height: 24px;
    padding: 0 26px 0 0;
    position: relative;
}

.acc__panel {
    color: #fff;
    display: block;
    font-size: 14px;
    letter-spacing: .25px;
    line-height: 16px;
    margin-bottom: 0;
    margin-top: 8px;
    padding-right: 56px;
    text-align: left;
}

.faq .acc .acc__card.active {
    background: #333;
}