.faq-list {
    max-width: 1080px;
    margin: 0 auto;
}
.faq-item {
    margin-bottom: 1px;
}
.faq-question,
.faq-answer {
    position: relative;
}
.faq-question {
    cursor: pointer;
    color: #777;
    background: #eee;
    font-size: 14px;
    padding: 14px 60px;
}
.faq-question:hover,
.faq-item.active .faq-question {
    background: #1468AE;
    color: #fff;
}
.faq-question:after {
    content: " ";
    background: url(../images/faq/accordion.png) no-repeat;
    display: block;
    width: 30px;
    height: 30px;
    position: absolute;
    top: 10px;
    right: 10px;
}
.faq-item.active .faq-question:after {
    background-position: 0 100%;
}
.faq-question .icon {
    background-image: url(../images/faq/icon_q.png);
    width: 36px;
    height: 36px;
    position: absolute;
    left: 12px;
    top: 6px;
}
.faq-answer {
    display: none;
    padding: 25px 30px;
    border: 1px solid #ccc;
    margin: 2px 0 10px;
}
.faq-list + .btn-box {
    padding-top: 64px;
}

@media screen and (max-width: 480px) {
    .faq-question {
        padding-left: 45px;
        padding-right: 10px;
    }
    .faq-question .icon {
        width: 28px;
        height: 28px;
        background-size: contain;
        left: 8px;
        top: 10px;
    }
    .faq-question:after {
        display: none;
    }
    .faq-answer {
        padding: 15px;
    }
}