.faq-container {
    margin: 2rem 12rem;
}

.faq-intro {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    margin-bottom: 3rem;

    .faq-intro-title {
        font-size: 2.2rem;
        text-align: center;
    }

    .faq-intro-description {
        font-size: 1.8rem;
        text-align: center;
    }
}

.faq-card {
    border-bottom: 0.063rem solid var(--gray-1);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 1rem 0 .5rem;
    font-size: 1.5rem;
    color: var(--blue-4);
    font-weight: 500;
    word-break: normal;
    gap: 1rem;
}

.faq-answer {
    color: var(--color-text);
    position: relative;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.5s ease-in-out, opacity 0.5s ease-in-out;
    overflow: hidden;
    margin-bottom: 1rem;
    text-align: justify;
}

.faq-answer.active {
    max-height: 25rem;
    opacity: 1;
}

.arrow-button {
    width: 2.2rem;
    height: 2.2rem;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.5s;
    transform: rotate(180deg);
    background: var(--blue-4);
    margin: 0.375rem;
}

.arrow-button svg {
    width: 1.2rem;
    height: 1.2rem;
    margin-bottom: 0.2rem;
    transition: transform 0.2s ease;
    stroke: var(--white-1);

}

.faq-question.active .arrow-button svg {
    transform: rotate(-180deg);
    margin-bottom: 0;
}


@media (width < 1400px) {
    .faq-container {
        margin: 4rem 10rem;
    }
}

@media (width <= 1200px) {
    .faq-container {
        margin: 3rem 6rem;
    }

    .faq-question {
        font-size: 1.2rem;
    }

    .faq-intro {
        margin-bottom: 1.5rem;
    }
}

@media (width < 992px) {
    .arrow-button {
        width: 2rem;
        height: 2rem;
    }
}

@media (width < 768px) {
    .faq-container {
        margin: 3rem;
    }

    .faq-intro {
        .faq-intro-title {
            font-size: 1.5rem;
            text-align: center;
        }

        .faq-intro-description {
            font-size: 1.2rem;
            text-align: center;
        }
    }

    .faq-question {
        font-size: 1rem;
    }
}

@media (width < 576px) {
    .faq-container {
        margin: 2rem;
    }
}

.faq-question h3 {
    font-size:24px;
    margin:0;
}