#faq {
}

#faqHeader {
    height: 600px;
    background-image: url("/assets/img/faq/hero.jpg");
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

#faqHeader {

}

#faqHeaderTitle {
    font: normal normal bold 52px/54px Eames Century Modern;
    color: white;
    text-align: center;
    margin: 0 0 60px;
}

#faqHeaderFAQ {
    background-image: url("/assets/img/faq/green.jpg");
    background-size: cover;
    background-position: center;
    padding: 48px 20px;
    width: 100%;
    max-width: 600px;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#faqHeaderFAQTitle {
    font-size: 32px;
    line-height: 44px;
    font-weight: bold;
    font-family: Eames Century Modern;
    color: white;
    text-align: center;
    margin: 0 0 4px;
}

#faqHeaderFAQSubtitle {
    font-size: 21px;
    line-height: 24px;
    text-align: center;
    color: white;
    margin-bottom: 27px;
}

#faqHeaderFAQLink {
    background-color: white;
    color: var(--primary-green);
    border: 2px solid black;
}

#faqBody {
    background-image: url("/assets/img/faq/wood.jpg");
    background-repeat: repeat;
    padding: 180px 20px 100px;
}

#faqBodyTitle {
    margin: 0 0 40px;
    color: var(--primary-green);
    font: normal normal bold 30px / 44px Eames Century Modern;
    text-align: center;
}

#faqBodyNav {
    display: flex;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto 40px;
    overflow-y: auto;
}

.faqBodyNavItem {
    padding: 15px 5px;
    flex-grow: 1;
    background-color: white;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
}

.faqBodyNavItem.active,
.faqBodyNavItem:hover {
    background-color: var(--primary-green);
    color: white;
}

.faqBodyForm {
    max-width: 1200px;
    margin: auto;
    padding: 40px 20px;
    background-color: white;
    border: 1px solid var(--primary-green);
    display: none;
    border-radius: 6px;
}

.faqBodyForm.active {
    display: block;
}

.faqBodyFormInner {
    max-width: 500px;
    margin: auto;
}

.faqBodyFormTitle {
    color: var(--primary-green);
    font: normal normal bold 24px/44px Eames Century Modern;
    margin: 0 0 40px;
    text-align: center;
}


.faqBodyFormList {
    display: grid;
    row-gap: 30px;
}

.faqBodyFormListItem {

}

.faqBodyFormListItemQuestion {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    color: var(--primary-green);
    font-weight: bold;
    font-size: 18px;
    line-height: 1.2;
    font-family: Eames Century Modern;
    cursor: pointer;
}

.faqBodyFormListItemQuestion::after {
    content: "+";
    font-size: 28px;
}

.faqBodyFormListItemQuestion.active::after {
    content: "-";
}

.faqBodyFormListItemAnswer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows ease 300ms;
}

.faqBodyFormListItemQuestion.active ~ .faqBodyFormListItemAnswer {
    grid-template-rows: 1fr;
}

.faqBodyFormListItemAnswerWrap {
    overflow: hidden;
}

.faqBodyFormListItemAnswerWrapContent {
    padding: 10px 0 0 0;
    font-size: 16px;
}

.faqBodyFormListItemAnswerWrapContent a {
    color: var(--primary-green);
    text-decoration: underline;
}

@media (max-width: 800px) {

    #faqHeader {
        height: 400px;
        background-image: url("/assets/img/faq/hero-mobile.jpg");
    }

    #faqHeaderTitle {
        font-size: 26px;
        margin: 0 0 100px;
    }

    #faqHeaderFAQ {
        max-width: calc(100vw - 30px);
    }

    #faqHeaderFAQTitle {
        font-size: 28px;
        margin-bottom: 10px;
        line-height: 32px;
    }

    #faqHeaderFAQSubtitle {
        font-size: 18px;
        line-height: 24px;
    }

    #faqBody {
        padding: 150px 0 80px;
    }

    #faqBodyTitle {
        font-size: 28px;
        line-height: 32px;
        max-width: 260px;
        margin: 0 auto 33px;
    }

    #faqBodyNav {
        padding: 0 20px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        row-gap: 5px;
        column-gap: 10px;
    }

    .faqBodyNavItem {
        padding: 16px 24px;
        line-height: 1;
        white-space: nowrap;
    }

    .faqBodyNavItem:last-child:nth-child(odd) {
        grid-column: span 2;
    }

    .faqBodyForm {
        border-radius: 0;
        padding: 30px 20px;
    }

    .faqBodyFormTitle {
        line-height: 1;
        margin-bottom: 30px;
    }


}