.faq {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 70%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10%;
}

.faqHead {
    font-family: Montserrat;
    font-size: 2em;
    font-weight: 600;
    line-height: 1.5em;
    text-align: center;
    margin-bottom: 1.5em;
}

.faqContainer {
    border: 0.4px solid #b6b7b7;
    width: 100%;
}

.faqItem {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 0.4px solid #b6b7b7;
    height: auto;
    cursor: pointer;
    /* margin-top: 48px; */
}

.faqQuestion {
    font-family: Montserrat;
    color: #444343;
    font-size: 1.2em;
    font-weight: 600;
    line-height: 1.5em;
    text-align: left;
    width: 65%;
    margin: 1.5em 2.5em;
}

.faqSymbol {
    margin-right: 1.5em;
    font-size: 1.875em;
    font-weight: 1600;
    color: black;
}

.faqAnswer {
    font-family: Montserrat;
    color: #444343;
    font-size: 1em;
    font-weight: 400;
    line-height: 1.5em;
    text-align: left;
    width: 88%;
    margin: 2em 0;
}

.faq-ans-container {
    display: none;
    justify-content: center;
    align-items: center;
}

.faq-ans-container.active {
    display: flex;
}

.faq-que-container>span {
    transform: rotate(0deg);
    transition: transform 0.3s ease-in-out;
}

.faq-que-container.active>span {
    transform: rotate(45deg);
}

@media screen and (max-width: 768px) {
    .faq {
        width: 85%;
    }

    .faqQuestion {
        font-size: 0.7em;
        width: 70%;
        margin: 5%;
    }

    .faqAnswer {
        font-size: 0.7em;
        margin: 3%;
    }

    .faqSymbol {
        margin-right: 5%;
    }
}