.faq__header {
    text-align: center;
    text-wrap: balance;
}

.faq__list {
    margin-top: 20px;
}

.faq__item {
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
}

.faq__item-question {
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    margin-bottom: 0px !important;
    font-size: 1.4rem;
    gap: 20px;
}

.faq__item-question svg {
    fill: none !important;
    stroke: var(--svg-fill) !important;
    stroke-width: 2px;
    transform: rotate(-90deg);
    transition: transform 0.25s ease;
    width: 12px;
}

.faq__item-question svg path {
    stroke-width: inherit;
    stroke: inherit;
}

.faq__item.open .faq__item-question svg {
    transform: rotate(90deg);
}

.faq__item-answer {
    margin-top: 8px;
    display: none;
}

.faq__item.open .faq__item-answer {
    display: block;
    margin-top: 10px;
    margin-bottom: 10px;
}
.faq__item-answer p:last-child {
    margin-bottom: 0px !important;
}

@media screen and (max-width: 969px) {
    .faq__header h1 {
        font-size: 1.8rem;
    }

    .faq__item-question {
        font-size: 1.1rem;
    }

    .faq__item-question svg {
        width: 12px;
    }
}