/* Hero Section Styles */
#hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px 20px;
    background-color: #f8f8f8; /* Light background for contrast */
}

.hero-content {
    max-width: 50%;
}

.hero-content h1 {
    font-size: 2.5rem;
    color: #000;
    margin-bottom: 20px;
}

.hero-content p {
    margin-bottom: 20px;
    color: #222;
}


.hero-content .btn:hover {
    background-color: #0056b3;
}

.hero-image {
    max-width: 50%;
}

.hero-image img {
    width: 100%;
    height: auto;
}


.hero-no-image {
    margin-top: 70px; /* Approximate height for desktop header */
}


/* Desktop Responsive Design */
@media (min-width: 768px) {
    #mobile-hero-img {
        display: none;
    }
    .hero-content {
        padding-left: 100px;
    }
    #hero {
        margin-top: 70px; /* Approximate height for desktop header */
    }
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
    #hero {
        flex-direction: column;
        text-align: center;
        padding: 0;
        margin-top: 70px; /* Approximate height for mobile header */

    }

    .hero-content {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .hero-image {
        max-width: 100%;
    }
    #desktop-hero-img {
        display: none;
    }
}
