.contact_us_first_banner {
    width: 100%;
    height: 40vh;
    overflow: hidden;
    position: relative;
    background-image: url('./../../images/contact_us_page/contact_us_first_banner.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


.contact_us_first_banner-overlay-div {
    position: absolute;
    z-index: 5;
    height: 100%;
    width: 100%;
    top: 0;
    background: #000000b5;
}

.contact_us_first_banner-overlay-child {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 5%;
}

.contact_us_first_banner-overlay-heading {
    font-size: 48px;
    font-weight: 700;
    line-height: 60px;
    text-align: center;
}

.contact_us_first_banner-overlay-paragraph {
    font-size: 29px;
    font-weight: 600;
    line-height: 43.5px;
    text-align: center;
}

.contact_us_first_banner-overlay-heading,
.contact_us_first_banner-overlay-paragraph {
    color: var(--secondary-color);
}

/* Tablet View (max-width: 768px) */
@media (max-width: 768px) {

    .contact_us_first_banner {
        height: 40vh;
        /* Reduce height for tablet */
    }

    .contact_us_first_banner-overlay-child {
        margin-left: 2%;
    }

    .contact_us_first_banner-overlay-heading {
        font-size: 36px;
        line-height: 58px;
    }

    .contact_us_first_banner-overlay-paragraph {
        font-size: 22px;
        line-height: 33px;
    }
}

/* Mobile View (max-width: 576px) */
@media (max-width: 576px) {
    .contact_us_first_banner {
        height: 40vh;
    }

    .contact_us_first_banner-overlay-child {
        margin-left: 0;
        padding: 0 5%;
    }

    .contact_us_first_banner-overlay-heading {
        font-size: 24px;
        line-height: 40px;
    }

    .contact_us_first_banner-overlay-paragraph {
        font-size: 16px;
        line-height: 24px;
    }
}