/* CSS for Contact Page Header Adjustment */
.contact-header-responsive {
    min-height: 450px !important;
    /* Slightly reduced height */
}

.contact-text-responsive {
    top: -80px !important;
    /* Raise text */
    position: relative;
    z-index: 1000;
}

/* Mobile responsive adjustments */
@media screen and (max-width: 640px) {
    .contact-header-responsive {
        min-height: 250px !important;
    }

    .contact-text-responsive {
        top: 0px !important;
        margin-top: 30px !important;
        padding: 0 15px;
    }

    .contact-text-responsive h1 {
        font-size: 28px !important;
        margin-bottom: 10px;
    }

    .contact-text-responsive p {
        font-size: 14px !important;
        line-height: 1.4;
    }
}