.faq-container {
    max-width: 1250px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin: 10rem auto;
}

.faq-header {
    text-align: left;
    margin-bottom: 1.25rem;
    max-width: 500px;
}

.faq-title {
    color: var(--Neutral-Black, #1A1A1A);
    font-family: Inter;
    font-size: 2.5rem;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
    letter-spacing: -0.025rem;
}

.faq-description {
    color: var(--Neutral-Granite, #7A7A7A);
    font-family: Inter;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.75rem;
}

.faq-items {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.faq-item {
    background: transparent;
    overflow: hidden;
    transition: 0.3s all ease-in-out;
    border-radius: 0.75rem;
    cursor: pointer;
}

.faq-question {
    border-radius: 0.75rem;
    border: 1px solid var(--Neutral-Stroke, #E9EBEC);
    color: var(--Neutral-Black, #1A1A1A);
    font-family: Inter;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 500;
    line-height: 1.625rem;
    padding: 1.5rem;
    width: 600px;
    display: flex;
    align-items: center;
    justify-content: space-between;

}


.faq-description {
    color: var(--Neutral-Dark-Grey, #4F4F4F);
    font-family: Inter;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    /* 1.5rem */
    letter-spacing: -0.03125rem;
}

.faq-question.active {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom: none;
    border-bottom: 1px solid var(--Neutral-Stroke, #E9EBEC) !important;
    background: #FED853 !important;

}


.faq-toggle {
    font-size: 20px;
    transition: transform 0.3s;
    color: rgba(65, 65, 65, 0.829)
}

.faq-question.active .faq-toggle {
    transform: rotate(180deg)
}

.faq-answer {
    color: var(--Neutral-Dark-Grey, #4F4F4F);
    font-family: Inter;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5rem;
    width: 600px;
    background: #FFFAEB !important;
    border-bottom-left-radius: 0.75rem;
    border-bottom-right-radius: 0.75rem;
    border: 1px solid var(--Neutral-Stroke, #E9EBEC);
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    padding: 1.5rem;

    position: relative;
    top: -4rem;

    margin-bottom: -3rem;

    opacity: 0;

    z-index: -1;
}


.faq-answer.show {
    max-height: 500px;
    position: relative;
    top: 0;
    margin-bottom: 0;
    opacity: 1;
}


@media screen and (width< 768px) {
    .faq-container {
        max-width: 100vw;
        flex-direction: column;
        margin: 2rem auto;

        padding: 1.25rem;

        margin-bottom: 9rem;
    }

    .faq-question {
        width: 90vw;
    }

    .faq-answer {
        width: 90vw;
    }

    .faq-title {
        color: var(--Neutral-Black, #1A1A1A);
        font-family: Inter;
        font-size: 1.5rem;
        font-style: normal;
        font-weight: 600;
        line-height: 130%;
        /* 1.95rem */
        letter-spacing: -0.0625rem;
    }

}