.faq-list {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-list li {
    margin-bottom: 25px;
}

.faq-question {
    position: relative;
    cursor: pointer;
    padding: 10px 10px 10px 60px;
    color: #66462C;
    font-size: 16px;
    font-weight: bold;
    line-height: 20px;
    background:#dbeeff;
}

.faq-question:hover,
.faq-item.active .faq-question {
    background: #5cc2ee;
    color: #FFF;
}

.faq-question:before {
    content: " ";
    background: url(../images/faq/icon_q.png) no-repeat;
    display: block;
    width: 40px;
    height: 40px;
    position: absolute;
    top: 0;
    left: 0;
}

.faq-answer {
    background: url(../images/faq/icon_a.png) no-repeat 0 5px;
    padding: 10px 30px 20px 45px;
    border: 1px solid #CCCCCC;
    margin-top: 7px;
    color: #66462C;
}
@media screen and (max-width: 480px) {
    .faq-question,
    .faq-answer {
        padding-left: 50px;
    }
}
