.contact_us_location_parent {
    width: 100%;
    margin: 2% auto;
}

.contact_us_location_left iframe {
    width: 100%;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
}

.contact_us_location_right-child {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    justify-content: space-evenly;
}

.our-location-head-office-heading {
    font-size: 21px;
    font-weight: 600;
    line-height: 31.5px;
    text-align: left;
}

.our-location-head-office-paragraph {
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    text-align: left;
}

.our-location-main-heading {
    font-size: 32px;
    font-weight: 600;
    line-height: 48px;
    text-align: left;
}

.our-location-head-office-heading,
.our-location-head-office-paragraph,
.our-location-main-heading {
    color: var(--secondary-color);
    text-align: left;
}



/* Tablet View (max-width: 768px) */
@media (max-width: 768px) {
    .our-location-main-heading {
        font-size: 28px;
        line-height: 42px;
    }

    .our-location-head-office-heading {
        font-size: 18px;
        line-height: 27px;
    }

    .our-location-head-office-paragraph {
        font-size: 14px;
        line-height: 22px;
    }

    .contact_us_location_right-child {
        justify-content: center;
        align-items: center;
    }
}

/* Mobile View (max-width: 576px) */
@media (max-width: 576px) {
    .our-location-main-heading {
        font-size: 24px;
        line-height: 36px;
    }

    .our-location-head-office-heading {
        font-size: 16px;
        line-height: 24px;
    }

    .our-location-head-office-paragraph {
        font-size: 12px;
        line-height: 20px;
    }

    .our-location-head-office-heading,
    .our-location-head-office-paragraph {
        text-align: center;
    }

    .contact_us_location_right-child {
        padding: 10px;
        gap: 0.5rem;
    }
}