/* Default: Desktop Hero */
.desktop-hero {
    display: block;
    background-size: cover;
    background-position: center;
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

/* Hide Mobile Hero by Default */
.mobile-hero {
    display: none;
}

/* Apply Different Image for Mobile */
@media (max-width: 768px) {
    .desktop-hero {
        display: none; /* Hide desktop image */
    }

    .mobile-hero {
        display: flex; /* Show mobile image */
        background-size: cover;
        background-position: center;
        position: relative;
        height: 40vh;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: white;
    }
}
