.contact-us {
    position: relative !important;
    align-items: center;
    display: flex;
    height: 550px;
    justify-content: space-around;
    background: #ECF4FF;
    padding: 20px;
    flex-wrap: wrap; 
    text-align: center;
}

.contact-us h2 {
    color: #000;
        text-align: start;

    line-height: 40px;
}

.contact-us h1 {
    font-size: 70px;
    text-align: start;
    margin-bottom: 30px;
}

.Address {
    font-size: 20px;
    width: 600px;
    max-width: 100%; 
}

.Address img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* ===== Responsive Breakpoints ===== */

/* Tablets (max 992px) */
@media (max-width: 992px) {
    .contact-us {
        flex-direction: column;
        height: auto;
        padding: 40px 20px;
    }

    .contact-us h1 {
        font-size: 50px;
    }

    .Address {
        font-size: 18px;
        width: 90%;
    }
}

/* Mobile devices (max 768px) */
@media (max-width: 768px) {
    .contact-us h1 {
        font-size: 36px;
    }

    .contact-us h2 {
        font-size: 20px;
    }

    .Address {
        font-size: 16px;
        width: 100%;
    }
}

/* Small phones (max 480px) */
@media (max-width: 480px) {
    .contact-us h1 {
        font-size: 28px;
    }

    .contact-us h2 {
        font-size: 18px;
        line-height: 24px;
    }

    .Address {
        font-size: 14px;
    }
}
