.faq-container {
    flex-direction: column;
    display: flex;
    width: 70%;
    justify-self: center;
    padding-top: 10vh;
}

.faq-title-container {
    text-align: center;
}

.faq-header-main {
    font-weight: 700;
    text-transform: uppercase;
}

.faq-header-highlight {
    color: #4ba13e;
    font-weight: 700;
    text-transform: uppercase;
}

.faq-grid {
    margin-top: 5vh;
    margin-bottom: 10vh;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    justify-content: space-around;
    justify-items: center;
}

.faq-item {
    font-size: 0.8rem;
    width: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-weight: 700;
    padding: 8px 20px;
    border: solid 1px #4ba13e;
    text-transform: uppercase;
    cursor: pointer;
}

.faq-question-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-answer {
    width: 100%;
    margin-top: 5px;
    color: #4ba13e;
    font-size: 0.7rem;
}

.faq-drop-indicator.rotate {
    rotate: 180deg;
}

@media only screen and (max-width: 1024px) {
    .faq-container {
        flex-direction: column;
        display: flex;
        width: 100%;
        justify-self: center;
        padding-top: 10vh;
    }
}
