.faq-container {
    display: flex;
    flex-direction: column;
    padding: 0px;
    background-color: var(--ColorContainer);
    border-radius: var(--BorderRadius);
    width: 100%;
    box-shadow: var(--Shadow);
}

.faq-container .faq-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 1rem;
    cursor: pointer;
}

.faq-container .faq-header h2 {
    font-size: 1.125rem;
    margin-right: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
}

.faq-container .faq-header .fa-chevron-down {
    transition: var(--Transition);
}

.faq-container .faq-content {
    padding: 0rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    overflow: hidden;
    max-height: 0px;
    transition: var(--Transition);
    opacity: 0;
}

.faq-container.open .faq-header .fa-chevron-down {
    transform: rotate(180deg);
}

.faq-container.open .faq-content {
    padding: 0.5rem 1rem 1rem 1rem;
    max-height: 500px;
    opacity: 1;
}

@media screen and (max-width: 350px) {
    .faq-container .faq-header h2 i {
        display: none;
    }
}