body {
    font-family: Arial, sans-serif;
}

header {
    background-color: #333;
    color: #fff;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

h1 {
    margin: 0;
    font-size: 22px;
}

nav ul {
    list-style-type: none;
    padding: 0;
    display: flex;
}

nav li {
    margin: 0 10px;
}

nav a {
    text-decoration: none;
    color: #fff;
}

#map-container {
    width: 100%;
    height: 500px; /* Adjust the height as needed */
}

.toggle-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    background-color: #fff;
    height: 3px;
    width: 25px;
    margin: 3px 0;
}

@media (max-width: 768px) {
    nav ul {
        display: none;
        flex-direction: column;
        background-color: #333;
        position: absolute;
        width: 50%;
        height: 40vh;
        top: 90px;
        right: 0;
        z-index: 1000;
    }

    nav ul li {
        flex-basis: 100%;
        border-top: 2px solid #000;
        color: #fff;
        padding: 15px 5px;
        font-family: Arial, Helvetica, sans-serif;
        font-size: 16px;
    }

    nav ul li:last-child {
        border-bottom: 2px solid #000;
    }

    nav ul.active {
        display: flex;
    }

    .toggle-menu {
        display: flex;
    }
}
