.section {
    margin: 0px 10%;
    margin-top: 60px;
}

.section-title {
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 40px;
    color: #003543;
}

.faq__card {
    border: 1px solid #0196BB;
    padding: 24px;
    border-radius: 10px;
    margin-bottom: 10px;
}

.faq__question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 23px;
    color: #0196BB;
}

.faq__arrow {
    transition: transform 0.3s ease;
    font-size: 14px;
    color: #0196BB;
}

.faq__answer {
    font-size: 16px;
    padding-top: 15px;
    color: #49585B;
    width: 70%;
}
.faq__answer p {
    margin-bottom: 0 !important;
}
.faq__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #E6F4F8;
    border-radius: 6px;
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.faq__arrow svg {
    transition: all 0.3s ease;
}

.faq__card.active .faq__arrow svg {
    transform: rotate(90deg);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 0 0 0;
}

.faq__card.active .faq__answer {
    max-height: 300px;
}

@media screen and (max-width: 768px) {
    .section-title {
        font-size: 23px;
    }

    .faq__question {
        font-size: 18px;
    }

    .faq__answer {
        font-size: 14px;
        width: 100%;
    }

    section {
        margin: 80px 5% !important;
    }
}