section#faq {
    background: #eee;
    padding: 16px;
    border-radius: 16px;
}

.gbz-faq-item {
    background: #fff;
    border-radius: 16px;
    margin-bottom: 16px;
}

.gbz-faq-item > h3 {
    padding: 12px;
    margin: 0;
    font-size: 18px;
    cursor: pointer;
}


.gbz-faq-item > .gbz-faq-answer p {
    margin: 0;
}

section#faq h2.gbz-product-section-title:before {
    content: "";
    width: 16px;
    height: 16px;
    background: #4CAF50;
    display: inline-block;
    margin-right: -16px;
    margin-left: 12px;
    border-radius: 8px 0 0 8px;
}

.gbz-faq-item{
    border-bottom:1px solid #e5e7eb;
}

.gbz-faq-question{
    position:relative;
    cursor:pointer;
    margin:0;
    padding:14px 0 14px 35px;
    font-size:16px;
    font-weight:700;
    color:#263238;
    line-height:1.8;
}

.gbz-faq-question::after{
    content:"+";
    position:absolute;
    left: 16px;
    top:50%;
    transform:translateY(-50%);
    width:24px;
    height:24px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius: 8px;
    padding-top: 4px;
    background: #4caf50;
    color:#fff;
    font-size:18px;
    font-weight:400;
}

.gbz-faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height .3s ease;
}

.gbz-faq-answer-text{
    margin:0 0 15px;
    color:#4b5563;
    font-size:14px;
    line-height:2;
}

.gbz-faq-item.active .gbz-faq-question::after{
    content:"−";
}

.gbz-faq-item.active .gbz-faq-answer{
    max-height:500px;
    padding: 12px;
}