#header {
    background-image: url("/images/headers/faq.jpg");
}

#faq {
    width: 1024px;
    margin: 0 auto;
    padding: 48px 24px;
    text-align: center;
}

#faq-category-buttons {
    display: flex;
    justify-content: center;
    margin-top: 24px;
    margin-bottom: 48px;
}

#faq-items {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.faq-item {
    display: flex;
    width: 600px;
    margin-bottom: 36px;
    text-align: left;
}

.faq-item-icon {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;
    margin-right: 24px;

    color: #757575;

    border: 1px solid #cecece;
    border-radius: 3px;
}

.faq-item-content {
    flex: 1;
}

.faq-item-title {
    cursor: pointer;

    position: relative;

    margin: 0;
    padding-top: 12px;
    padding-bottom: 12px;
}

.faq-item-title::after {
    content: '\f107';

    position: absolute;
    right: 0;

    margin-top: 2px;

    font-family: "Font Awesome 5 Free", emoji;
}

.faq-item.faq-item-expanded .faq-item-title::after {
    content: '\f106';
}

.faq-item-body {
    overflow: hidden;
    height: 0;
}

.faq-item.faq-item-expanded .faq-item-body {
    height: 100%;
}

@media only screen and (width <= 1024px) {
    #faq {
        width: 100%;
    }

    #faq-category-buttons {
        flex-direction: column;
    }

    .faq-category-button {
        margin-bottom: 12px;
    }

    .faq-item {
        width: 100%;
    }
}
