.faqContentContainer{
    width: 700px;
    margin: 0 auto;
    padding: 0 13px 60px;
    background-color: #f4f4f4;
    min-height: 400px;
}

.faqContentContainer .faqIntro{
    width: 100%;
    float: left;
    margin-bottom: 30px;
}

.faqAccordion{
    width: 100%;
    float: left;
}

.faqItem{
    width: 100%;
    float: left;
    background-color: #fff;
    margin-bottom: 12px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12);
}

.faqQuestion{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    background-color: #fff;
    border: none;
    cursor: pointer;
    padding: 18px 20px;
    font-family: 'Roboto', sans-serif;
    font-size: 17px;
    font-weight: 500;
    color: #2b3944;
}

.faqQuestion:hover{
    color: #477598;
}

.faqIcon{
    position: relative;
    flex: 0 0 16px;
    width: 16px;
    height: 16px;
    margin-left: 20px;
}

.faqIcon::before,
.faqIcon::after{
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    background-color: #2b3944;
    transform: translate(-50%, -50%);
    transition: transform 0.2s ease;
}

.faqIcon::before{
    width: 16px;
    height: 2px;
}

.faqIcon::after{
    width: 2px;
    height: 16px;
}

.faqItem.faqOpen .faqQuestion{
    color: #477598;
}

.faqItem.faqOpen .faqIcon::after{
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

.faqAnswer{
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
}

.faqAnswerInner{
    padding: 0 20px 20px;
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    font-weight: 300;
    line-height: 26px;
    color: #000;
}

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

@media (max-width: 816px){
    .faqContentContainer{
        width: 100%;
        padding: 0 12px 40px;
        box-sizing: border-box;
    }

    .faqQuestion{
        font-size: 15px;
        padding: 14px 15px;
    }

    .faqAnswerInner{
        font-size: 14px;
        padding: 0 15px 16px;
    }
}
