.faq {
    width: 100%;
    padding-left: 100px;
    padding-right: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.faq-title {
    margin-bottom: 20px;
}

.faqs {
    margin-top: 64px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.faq-item {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 70%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.11);
    padding-top: 24px;
    padding-bottom: 32px;
}

.faq-content {
    width: 70%;
    text-align: start;
    transition: max-height 0.5s ease-out, opacity 0.5s ease-out;
    opacity: 0;
    max-height: 0px;
    overflow: hidden;
}

.active {
    max-height: fit-content;
    opacity: 1;
}

.faq-text {
    font-size: 1.2em;
    color: black;
    font-weight: 700;
}

.faq-plus {
    width: 24px;
    height: 24px;
    background-image: url("../media/plus-circle.png");
}

.faq-minus {
    width: 24px;
    height: 24px;
    background-image: url("../media/minus-circle.png");
    background-repeat: no-repeat;
}

@media (orientation: portrait) {
    .faq {
        padding-left: 20px;
        padding-right: 20px;
    }

    .faq-item {
        width: 100%;
    }
}
