#faq {
    max-width: 875px;
    margin: auto;
    line-height: 1.6;
    padding: 40px 20px;
}

#faqSlogan {
    font-family: 'Martel', serif;
    font-size: 30px;
    margin-top: 0;
    text-align: center;
}

#faqSubtitle {
    text-align: center;
    margin-bottom: 20px;
}

.faqItem {
    border-top: 1px solid var(--brown);
}

.faqItem:last-child {
    border-bottom: 1px solid var(--brown);
}

.faqItemTitle {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 16px 0;
    width: 100%;
}

.faqItemTitle:after {
    content: "+";
    font-size: 34px;
    margin-left: auto;
    padding-left: 20px;
    position: relative;
    line-height: 0;
}

.faqItem.active .faqItemTitle:after {
    content: "-";
}

.faqItemBody {
    overflow: hidden;
    height: 0;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
}

.faqItem.active .faqItemBody {
    height: auto;
}

.faqItemBody p:first-child {
    margin-top: 0;
}

.faqItemBody p:last-child {
    margin-bottom: 29px
}

.faqItemBody a {
    text-decoration: underline
}

@media (max-width: 800px) {
    #faqSlogan {
        font-size: 22px
    }

    .faq {
        padding: 30px 20px 20px;
    }

    .faqTitle {
    }

    .faqItemTitle {
        padding: 18px 0;
    }

    .faqItemTitle::after {
        font-size: 28px;
    }

}