
.contact-us-hero {
    position: relative;
    width: 100%;
    height: 70vh;
    overflow: hidden;
    border-radius: 12px;
    margin: 20vh auto 5vh auto;
    max-width: 1200px;
    background-image: url('../../../assets/img/contact/contact-hero.png');
    background-size: cover;
    background-position: center;

}

.contact-us-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.2) 100%);
    z-index: 1;
}

.contact-us-hero__content {
    position: relative;
    z-index: 2;
    color: white;
    padding: 40px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.contact-us-hero__title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.1;
}

.contact-us-hero__text {
    font-size: 1rem;
    max-width: 500px;
    line-height: 1.5;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .contact-us-hero {
        height: 450px;
        border-radius: 8px;
        margin: 10px;
        background-image: url('../../../assets/img/contact/contact-hero-m.png');
    }

    .contact-us-hero::before {
        background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.8) 100%);
    }

    .contact-us-hero__content {
        padding: 25px;
        align-items: flex-start;
        justify-content: flex-end;
    }

    .contact-us-hero__title {
        font-size: 2rem;
        margin-bottom: 10px;
    }

    .contact-us-hero__text {
        font-size: 0.8rem;
        max-width: 100%;
    }
}