body{
    font-family: 'Poppins', sans-serif !important;
    background-color: #ffffff;
}

/* Hero Section */
.contact-hero {
    height: 100vh;
    background-image: url('/assets/img/landing/contact-hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.contact-hero .container {
    z-index: 2;
}

.h1-hero-header {
    font-size: 3.5rem;
}

.contact-hero h3 {
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.contact-hero p {
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.width {
    width: 60%;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .h1-hero-header {
        font-size: 3rem;
    }
    
    .width {
        width: 60%;
    }
}

@media (max-width: 992px) {
    .h1-hero-header {
        font-size: 2.5rem;
    }
    
    .contact-hero h3 {
        font-size: 1.5rem;
    }
    
    .width {
        width: 70%;
    }
    
    .contact-hero {
        height: auto;
        min-height: 100vh;
        padding: 80px 0;
    }
}

@media (max-width: 768px) {
    .h1-hero-header {
        font-size: 2rem;
    }
    
    .contact-hero h3 {
        font-size: 1.25rem;
    }
    
    .width {
        width: 85%;
    }
    
    .contact-hero {
        background-position: center center;
        padding: 60px 0;
    }
}

@media (max-width: 576px) {
    .h1-hero-header {
        font-size: 1.75rem;
    }
    
    .contact-hero h3 {
        font-size: 1.1rem;
    }
    
    .contact-hero p {
        font-size: 0.95rem;
    }
    
    .width {
        width: 95%;
    }
    
    .contact-hero {
        padding: 40px 0;
        min-height: 80vh;
    }
}


.h1-title{
    font-size: 3.5rem !important;
    font-weight: 900 !important;
}

.fs-3rem {
    font-size: 3rem !important;
}