.style .faq li:before {
    display: none;
}
.style .faq .question {
    font-weight: bold;
    cursor: pointer;
    padding: 15px 80px 15px 15px;
    border-top: 1px solid #e9ecef;
    border-radius: 5px;
    transition: background-color 0.2s ease;
    position: relative;
    color:#8ab446;
}
.style .faq .question:hover::after {
    transform: translateY(-50%) rotate(90deg);
}
.style .faq .question::after {
    content: '+';
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    font-weight: bold;
    transition: all 0.3s ease;
    border-radius: 50%;
    background-color:#8ab446;
    color:#ffffff;
    width:40px;
    height:40px;
    text-align: center;
    line-height: 36px;
}

.style .faq .question.active {
    color:#333;
}

.style .faq .question.active::after {
    content: '−';
    transform: translateY(-50%) rotate(180deg);
}
.style .faq .answer {
    display:none;
}
.style .faq .answer.active {
    margin-top:10px;
    display: block;
}
