.cfq-post-section,
.cfq-wrapper{
    margin:30px 0;
}

.cfq-post-section h2{
    font-size:32px;
    font-weight:700;
    text-align:center;
    margin-bottom:25px;
}

.cfq-item{
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:12px;
    margin-bottom:15px;
    overflow:hidden;
    box-shadow:0 2px 10px rgba(0,0,0,.05);
    transition:.3s;
}

.cfq-item:hover{
    box-shadow:0 5px 20px rgba(0,0,0,.10);
}

.cfq-question{
    padding:18px 20px;
    cursor:pointer;
    font-size:16px;
    font-weight:600;
    position:relative;
    background:#fff;
}

.cfq-question:after{
    content:"+";
    position:absolute;
    right:20px;
    top:50%;
    transform:translateY(-50%);
    font-size:22px;
    font-weight:700;
}

.cfq-item.active .cfq-question:after{
    content:"−";
}

.cfq-answer{
    display:none;
    padding:20px;
    border-top:1px solid #eee;
    line-height:1.8;
    color:#444;
    background:#fafafa;
}

.cfq-item.active .cfq-answer{
    display:block;
}

@media(max-width:768px){

    .cfq-post-section h2{
        font-size:24px;
    }

    .cfq-question{
        font-size:15px;
        padding:15px;
    }

    .cfq-answer{
        padding:15px;
    }

}

.cfq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height .3s ease;
    padding:0 20px;
}

.cfq-item.active .cfq-answer{
    padding:20px;
}