.faq-container {
    max-width: 100%;
    margin: auto;
}

.faq-item {
    display: none; 
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    border-bottom: 1px solid #ddd;
    padding: 32px 0px;
}

.faq-item.visible {
    display: block;
    opacity: 1;
    transform: translateY(0);
    display: grid;
    gap: 1.5rem;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.25rem;
    font-weight: 600;
    text-transform: unset;
    line-height: 1.15;
    cursor: pointer;
    margin: 0;
    color: #057A99;
    letter-spacing: 0px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.faq-toggle-icon {
    height: 1.5rem;
    width: 1.5rems;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-question.active .faq-toggle-icon {
    transform: rotate(180deg);
}
/* .faq-question:hover {
    background-color: #e0e0e0;
} */

.faq-answer {
    display: none;
    margin: 0;
    font-weight: 400;
    font-size: 1rem;
    letter-spacing: 0px;
}

.faq-answer p {
    margin: 0;
    color: #63646A;
}

.faq-answer.active {
    display: block;
    margin: 0;
}
