.faq-question-section {
    margin-top: 7.5rem;
    margin-bottom: 4rem;
}

.faq-question-section h1 {
    color: #2f4447;
    font-size: clamp(1.8rem, 2.6vw, 2.4rem);
    font-weight: 500;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.faq-item {
    border-top: 1px solid #D9D9D9;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}

.faq-row {
    display: flex;
    gap: 2.5rem;
}

.faq-accordion {
    margin-top: 2.5rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 2.5rem;
    cursor: pointer;
}

.faq-title {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1;
    display: flex;
    justify-content: space-between;
}

.faq-title span {
    max-width: 80%;
}

.faq-text {
    margin-top: 1.875rem;
}

.faq-item.open .faq-toggle svg {
    transform: rotate(180deg);
    transition: all .5s ease;
}

.faq-toggle svg {
    transition: all .5s ease;
}

@media (max-width: 766px) {
    .faq-accordion {
        margin-top: 1.875rem;
        grid-template-columns: 1fr;
    }

    .faq-item {
        padding-top: 1.25rem;
        padding-bottom: 1.25rem;
    }

    .faq-title {
        font-size: 1.25rem;
    }

    .faq-toggle svg {
        width: 1.3rem;
    }
}
