body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 15px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: #FFFFFF;
    margin: 0;
    color: #333333;
}

button {
    font-family: 'Montserrat', sans-serif;
}

b {
    font-weight: 700;
}

p {
    line-height: 160%;
    padding-bottom: 30px;
}

.full-width {
    flex-direction: column;
    max-width: 916px;
    margin: 0 auto;
    margin-top: 50px;
}

.full-width a {
    text-decoration: none;
    color: #4A94DD;
    font-weight: 700;
}

.faq-header {
}

.faq-title {
    font-size: 50px;
    font-weight: 700;
}

.faq-content {
    margin-bottom: 80px;
}

.faq-table-of-contents {

}

.faq-subcategory {
    margin-top: 40px;
}

.faq-category {
    margin-top: 60px;
}

.accordion {
    color: #444;
    cursor: pointer;
    padding: 18px 0;
    width: 100%;
    border: none;
    border-top: 1px solid #eee;
    text-align: left;
    outline: none;
    font-size: 16px;
    transition: 0.2s;
    font-weight: 600;
    background-color: #fff;
    line-height: 160%;
}

.faq-subcategory + .accordion, .faq-category-title + .accordion {
    border-top: none;
}

.accordion:hover {
    color: #4A94DD;
}

.active {
    color: #4A94DD;
    background-color: #fff;
}

.panel {
    padding: 0 18px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease;
    font-size: 15px;
}

@media screen and (max-width: 916px) {
    .full-width {
        max-width: 90%;
        padding: 0 5%;
    }
}

