#faq {
    padding: 20px;
    background-color: #ffffff;
    border-radius: 12px;
    max-width: 800px;
    margin: 40px auto;

}
#faq h2 {
    text-align: center;
    color: rgb(4, 64, 107);
    font-size: 28px;
    margin-bottom: 30px;
    text-decoration: underline 2px;
    text-decoration-thickness: 1px;
    text-underline-offset: 8px;
}
.faq-item {
    margin-bottom: 15px;
    padding: 15px;
    background-color: #e4e1e1;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 1px solid #ddd;
}
.faq-item.active {
    background-color: #043D5D;
    border-color: #1e90ff;
}
.faq-question {
    font-size: 16px;
    font-weight: 600;
    color: #061350;
    cursor: pointer;
    display: flex;
    align-items: center;

    justify-content: space-between;
    align-items: center;
}
.faq-question i {
    transition: transform 0.3s ease;
}
.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: white;
    transition: transform 0.3s ease;
}
.faq-answer {
    font-size: 16px;
    font-weight: 400;
    color: white;
    line-height: 1.6;
    display: none;
    margin-top: 10px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease;
}.faq-item.active .faq-question {
    display: inline-flex;
    align-items: center;
    justify-content: space-around;
    color: white;
    transition: transform 0.3s ease;
}
.faq-item.active .faq-answer {
    display: block;
    color: white;
    max-height: 100px;
    opacity: 1;
}
@media (max-width: 768px) {
    #faq h2 {
        font-size: 24px;
    }

    .faq-question {
        font-size: 16px;
    }

    .faq-answer {
        font-size: 14px;
    }
}