@media (max-width: 768px) {
    .banner-text {
        color: white;
        font-size: 2rem;
        font-weight: bold;
        margin-bottom: 20px;
    }

    .desktopMap {
        display: none;
    }

    .mobile-map {
        display: block;
        width: 100%;
        height: 440px;
        border: none;
    }

    .mobileHero {
        z-index: 999;
    }

    .mobileContainer {
        position: fixed;
        bottom: 0;
        left: 0;
        background-color: white;
        width: 100%;
        border-radius: 10px;
        transform: translateY(0%);
        transition: all 0.3s ease;
    }

    .mobileContainer.hide {
        transform: translateY(85%);
    }

    .mobileNavigate {
        position: absolute;
        top: 10px;
        left: calc(50% - 30px);
        width: 60px;
        height: 10px;
        border: none;
        display: flex;
        justify-content: center;
        overflow: hidden;
        z-index: 9999;
        pointer-events: auto;
        background-color: white;
    }

    .mobileNavigate img {
        height: 4px;
    }
}

@media (min-width: 768px) {
    .mobile-map {
        display: none;
    }

    .mobileNavigate {
        display: none;
    }
}