/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url("https://www.fortray.com/assets/hire-fortrayan/img/contact-us/main-banner.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-section h1 {
    font-size: 60px;
    text-shadow: 5px 5px 3px var(--primary-color);
    margin: 0;
}

/* Mobile screens */
@media (max-width: 767px) {
    .hero-section {
        min-height: 350px;
    }

    .hero-section h1 {
        font-size: 30px;
    }
}