.faq-item {
    padding: 40px 0;
    border-bottom: 1px solid #ccc;
    cursor: pointer;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between; 
    font-size: 18px;
}

.faq-question h3 {
    color: #000;
    font-family: Teko;
    font-size: 40px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    margin: 0;
}

.faq-answer {
    display: none;
}

.faq-answer p {
    color: #000;
    font-family: Arial;
    font-size: 20px;
    line-height: 26px;
    margin: 0;
    padding-top: 10px;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .icon {
    transform: rotate(90deg);
}

.faq-item .icon{
    transition: 0.3s ease-in-out;
}


@media screen and (max-width:991px){
    .faq-question h3{
        font-size: 34px !important;
        line-height: 34px !important;
    }
    .faq-answer p {
        font-size: 18px;
        line-height: 24px;
    }
}
@media screen and (max-width:767px){
    .faq-question h3 {
        font-size: 28px !important;
        line-height: 38px !important;
    }
    .faq-answer p {
        font-size: 16px;
        line-height: 20px;
    }
    .faq-item{
        padding: 30px 0;
    }
}