.faq-section {
    max-width: 110rem;
    margin: 4rem auto;
    text-align: left;
    padding: 2rem;
    background: #bdbfc2;
    border-radius: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.faq-item {
    margin-bottom: 15px;
}

.faq-question {
    font-size: 2.2rem;
    font-weight: bold;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #031a65;
    padding: 10px 0;
}

.faq-answer {
    font-size: 1.8rem;
    display: none;
    padding-top: 5px;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer ul{
    padding: 2rem 3rem;
}