/* FAQs SECTION */
#FAQs{
    height: 100%;
    display: flex;
    flex-direction: column;
    margin: 70px 0;
    align-items: center;
    
}

#FAQs h1{
    text-transform: capitalize;
    font-size: 4rem;
    color: #0a111f;
    align-self: center;
    text-align: center;
    font-weight: 700;
}

#FAQs p.page_desc{
    
    font-size: 1.5rem;
    font-weight: 400;
    color: #606063;
    text-align: center;
}

.horiz_line{
    width: 100%;
    height: 1px;
    border-radius: 1px;
    background-color: #0a111f;
}

/* QUESTIONS LIST */
.questions_container{
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-top: 80px;
    padding: 0 100px;
    gap: 20px;
}

/* question_card */
.question_card{
    width: 100%;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    gap: 10px;
}

.question_card .question_title{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.question_card .question_title h3{
    font-size: 1.75rem;
    font-weight: 500;
    color: #0a111f;
}

.question_card .question_title i{
    font-size: 2rem;
    font-weight: 500;
    color: #0a111f;
    transition: 0.5s ease;
}
.question_card .question_answer p{
    font-size: 1.25rem;
    font-weight: 400;
    color: #0a111f;
}

.question_card .question_answer p a{
    font-size: 1.25rem;
    font-weight: 600;
    
}

.question_card .question_answer {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.15s ease; /* Apply transition only to max-height */
}

.question_card.active .question_answer {
    max-height: 300px;
    transition: max-height 0.6s ease; /* Reapply transition only to max-height */
}

.question_card.active .question_title i{
    transform: rotate(180deg);
    
}


@media (max-width:800px) {
    .questions_container{
        
        padding: 0;
        margin-top: 40px;
    }
}