.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: #222;
    font-size: 16px;
    font-weight: bold;
    line-height: 20px;
    min-height: 20px;
}
.faq-question:hover,
.faq-item.active .faq-question {
    background: #FF732F;
    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 {
    display: none;
    background: url(../images/faq/icon_a.png) no-repeat 0 10px;
    padding: 15px 15px 15px 60px;
    min-height: 22px;
}

@media screen and (max-width: 480px) {
    .faq-question,
    .faq-answer {
        padding-left: 50px;
    }
}