.faqs_section {
    padding: 28px 20px;
}

.faqs_title {
    font-size: 24px;
    font-weight: 600;
    color: var(--heading-font-color);
    margin-bottom: 1.5rem;
   
}

.faqs_wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq_item.active {
    background: var(--light-bgcolor);
    border-radius: 20px;
}

.faq_question_wrapper {
    display: flex;
    flex-direction: row;
    gap: 10px;
    padding: 1rem;
    border: 1px solid var(--heading-font-color);
    border-radius: 20px;
}

@media screen and (min-width: 768px) {
    .faq_question_wrapper {
        padding: 1rem 2rem;    
    }    
}

.faq_item.active .faq_question_wrapper{
    border: none;
}

.faq_item.active .faq_plus_icon {
    transform: rotate(270deg); 
}

.faq_item.active .faq_plus_icon .horizontal {
    display: none;
}

.faq_item.active .faq_answer {
    display: block;
}

.icon_question_mark {
    width: 18px;
    height: auto;
}

.faq_question {
    display: flex;
    justify-content: space-between;
    width: -webkit-fill-available;
    font-size: 14px;
    font-weight: 500;
    color: var(--heading-font-color);
}

.faq_plus_icon {
    width: 18px;
    height: auto;
    transition: transform 0.3s ease;
}
.faq_answer_wrapper{
    padding: 0 2rem;
}
.faq_answer {
    font-size: 12px;
    font-weight: 400;
    display: none;
    padding: 1rem 0;
    border-top: 1px solid var(--heading-font-color);
}

.faq_answer a{
    text-decoration: none;
    color: var(--font-color);
}

.faq_answer a:hover{
    text-decoration: underline;
    font-weight: 500;
    color: var(--button-bgcolor);
}

@media screen and (min-width:768px){
    .faqs_section {
        max-width: 45rem;
        width: 100%;
        margin: 0 auto;
        padding: 64px;
    }

    .faqs_title {
        font-size: 32px;
    }

    .faq_question_wrapper {
       
    }

    .icon_question_mark {
        width: 24px;
        height: auto;
    }

    .faq_question {
        font-size: 20px;
        font-weight: 500;
    }

    .faq_plus_icon {
        width: 24px;
        height: auto;
    }
    .faq_answer{
        font-size: 16px;
        font-weight: 400;
    }
}

@media (min-width:1024px) {
    .faqs_section {
        max-width: 70%;
    }
}