* {
    padding: 0;
    margin: 0;
}

body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background-color: #fff;
    color: #474747;
}

.H1-heading {
    margin-top: 10rem;
    font-weight: 800;
    font-size: 46px;
    color: #033341;
    text-align: center;
    margin-bottom: 50px;
}

.REAL-faq-faq-container {
    max-width: 1200px;
    margin: 0 auto;
}

.REAL-faq-faq-item {
    border-bottom: 1px solid #b9b6b6;
    padding-bottom: 8px;
    margin-bottom: 10px;
}

.REAL-faq-faq-item:last-child {
    border-bottom: none;
}

.REAL-faq-faq-question {
    background-color: #f7f7f7;
    border-radius: 6px;
    font-weight: 400;
    font-size: 16px;
    color: #474747;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.REAL-faq-faq-question span {
    user-select: none;
}

.REAL-faq-faq-answer {
    display: none;
    padding: 16px 0 0 12px;
    font-size: 15px;
    line-height: 1.5;
    color: #474747;
}

.REAL-faq-highlight {
    font-weight: 700;
    color: #e89b4b;
}

.REAL-faq-faq-answer p {
    margin: 10px 0;
}

.REAL-faq-faq-question i {
    font-size: 16px;
    color: #474747;
    transition: transform 0.3s ease;
}

.REAL-faq-faq-question.active i {
    transform: rotate(180deg);
}

.REAL-faq-last-div {
    margin-top: 20px;
    margin-bottom: 50px;
}

.REAL-faq-last-p {
    font-size: 16px;
}


@media (max-width: 480px) {
    .H1-heading {
        font-size: 30px;
    }

    .REAL-faq-faq-container {
        padding: 10px;
    }

    .REAL-faq-faq-question {
        font-size: 13px;
    }

    .REAL-faq-faq-question i {
        font-size: 12px;
    }

    .REAL-faq-last-p {
        font-size: 13px;
    }
}