/*
.faq-cards {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    gap: 25px;
}

.faq-card {
    overflow: hidden;
}

.faq-card .faq-question {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-direction: row-reverse;
    gap: 18px;
    font-size: 18px;
    font-weight: 500;
}

.faq-card .faq-question img {
    height: 40px;
}

.faq-card .faq-answer {
    padding: 0 0 0 60px;
    transition: all 0.2s linear;
}

.faq-card[selected="false"] .faq-answer {
    max-height: 0;
}

.faq-card[selected="true"] .faq-answer {
    max-height: 200px;
    padding: 18px 0 18px 60px;
}
*/

.faq {
    width: 100%;
}

.faq-cards {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    gap: 25px;
}

.faq-card {
    border-radius: 12px;
    overflow: hidden;
    width: 100%;
}

.faq-card .faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 25px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    background-color: var(--light-grey);
}

.faq-card[selected="true"] .faq-question {
    border-bottom: 2px solid white;
}

.faq-card .faq-question img {
    height: 25px;
    transition: all 0.2s linear;
}

.faq-card[selected="true"] .faq-question img {
    transform: rotate(180deg);
}

.faq-card .faq-answer {
    transition: all 0.2s linear;
    overflow: hidden;
    background-color: var(--light-green);
}

.faq-card[selected="false"] .faq-answer {
    max-height: 0px;
}

.faq-card[selected="true"] .faq-answer {
    max-height: 200px;
    padding: 18px 25px;
}

.faq-card .faq-answer p {
    transition: all 0.2s linear;
}

.faq-card[selected="false"] .faq-answer p {
    transform: scale(0.9);
}

.faq-card[selected="true"] .faq-answer p {
    transform: scale(1);
}