.questions {
    padding-top: 60px;
    padding-bottom: 120px;
}

.accordion {
    padding: 30px 0;
    border-bottom: 1px solid var(--color-text-gray2);
}

.accordion__toggler {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    padding-right: 52px;
    appearance: none;
    border: none;
    background-color: transparent;
    border-radius: 0;
    text-align: left;
    transition: color .4s;
}

.accordion__toggler::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 32px;
    height: 28px;
    background-image: url('../img/accordion-toggle-arrow.svg');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right center;
    filter: brightness(0) invert(1);
    transition: transform .4s;
}

.accordion__toggler:not(.collapsed) {
    color: var(--color-accent);
}

.accordion__toggler:not(.collapsed)::after {
    transform: rotateZ(180deg);
    filter: none;
}

.accordion__content {
    padding-top: 20px;
}

.accordion__title {
    font-weight: 700;
    font-size: 24px;
}

@media screen and (max-width: 1199px) {
    .accordion__title {
        font-size: 22px;
    }

    .accordion__toggler::after {
        width: 26px;
        height: 24px;
    }
}

@media screen and (max-width: 991px) {
    .accordion__title {
        font-size: 20px;
    }

    .accordion__toggler::after {
        width: 24px;
        height: 22px;
    }
}

@media screen and (max-width: 767px) {
    .accordion__title {
        font-size: 16px;
    }

    .accordion__toggler {
        padding-right: 30px;
    }

    .accordion__toggler::after {
        width: 20px;
        height: 18px;
    }
}