#FAQ {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#FAQ .main-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 50px;
    width: 100%;
}

#FAQ .text-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    gap: 5px;
    pointer-events: none;
} 

#FAQ .text-container h2 {
    font-size: 1.5rem;
    font-weight: var(--title-weight);
    line-height: 1.5rem;
    color: white;
    text-transform: uppercase;
    pointer-events: none;
} 

#FAQ .text-container h4 {
    display: none;
    opacity: 0;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.2rem;
    color: rgba(255, 255, 255, 0.5);
    pointer-events: none;
}

#FAQ .feedback-text { 
    transition: opacity .25s ease;
    will-change: transform;
}

#FAQ .feedback-text h2 {
    font-size: 15rem;
    font-weight: var(--title-weight);
    line-height: 12rem;
    color: white;
    text-transform: uppercase;
} 

#FAQ .feedback-text h4 {
    font-size: 1.5rem;
    font-weight: 200;
    line-height: 1.65rem;
    color: var(--subtitle-color);
    margin-left: 20px;
}

#FAQ .faq-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 30%;
    border-left: 1px solid white;
    padding-left: 25px;
}

@media (max-width: 1024px) {
    #FAQ .main-container {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
    }
    
    #FAQ .feedback-text {
        width: 100%;
    }

    #FAQ .feedback-text h2 {
        font-size: 35vw;
        font-weight: var(--title-weight);
        line-height: 35vw;
        color: white;
        text-transform: uppercase;
    } 

    #FAQ .feedback-text h4 {
        margin-left: 10px;
    }

    #FAQ .text-container h2 {
        font-size: 1.25rem;
        font-weight: var(--title-weight);
        line-height: 1.5rem;
        color: white;
        text-transform: uppercase;
        pointer-events: none;
    } 

    #FAQ .text-container h4 {
        font-size: 1rem;
    }

    #FAQ .faq-container {
        gap: 15px;
        width: 100%;
        border-left: 1px solid white;
        padding-left: 15px;
    }
}