* {
    padding: 0;
    margin: 0;
}

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

/* book appointment -----------------------------------*/
.book-appointment {
    padding: 15px 30px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 30px;
    background: rgba(10, 9, 9, 0.392);
    color: white;
    font-size: 18px;
    cursor: pointer;
    display: none;
    align-items: center;
    gap: 10px;
    transition: 0.3s ease;
    backdrop-filter: blur(5px);

    /* Fixed Position Add kiya */
    position: fixed;
    bottom: 30px;
    right: 35px;
    z-index: 1100;
    /* Menu button se upar dikhe */
}

.book-appointment:hover {
    background: rgba(12, 0, 0, 0.879);
    border-color: white;
    transform: scale(1.05);
}

@media (max-width: 800px) {
    .book-appointment {
        display: flex;
        font-size: 12px;
        padding: 10px 15px;
        right: 7px;
    }
}

/*---------------------------------------------------------*/

.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: #f39c12;
}

.REAL-faq-faq-answer p {
    margin: 10px 30px;
    margin-bottom: 20px;
    line-height: 1.5;
    font-weight: 300;
    color: black;
}

.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: 50px;
    margin-bottom: 50px;
}

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

.last-p-with-number-email {
    font-size: 16px;
    padding: 20px;
}

.a-tag-last-footer {
    color: rgb(2, 93, 2);
}

.a-tag-last-footer:hover {
    color: #f39c12;
}

.space-in-faq-from-footer {
    height: 5rem;
}


@media (max-width: 1200px) {
    .REAL-faq-faq-container {
        padding: 15px;
    }
}


@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;
    }

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

    }

    .space-in-faq-from-footer {
        height: 2rem;
    }
}