body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f4f6f9;
}

header {
    text-align: center;
    padding: 20px;
    background: #1f3c88;
    color: white;
}

#map {
    height: 600px;
    width: 95%;
    margin: 20px auto;
    border-radius: 12px;
}

footer {
    text-align: center;
    padding: 15px;
    background: #222;
    color: white;
}



.legend {
    background: white;
    padding: 12px;
    line-height: 1.6;
    border-radius: 8px;
    box-shadow: 0 0 12px rgba(0,0,0,0.2);
    font-size: 14px;
}

.legend i {
    width: 15px;
    height: 15px;
    float: left;
    margin-right: 8px;
    opacity: 0.9;
}


/* Reset and font */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}

nav {
    background-color: #0077b6;
    padding: 10px;
    text-align: center;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-weight: bold;
}

nav a:hover {
    color: #ffd166;
}

header {
    text-align: center;
    padding: 50px 20px;
    background-color: #023e8a;
    color: white;
}

header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

header p {
    font-size: 1.1em;
    line-height: 1.5;
}

/* Sections */
section {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

section h2 {
    color: #0077b6;
    margin-bottom: 15px;
}

ul {
    list-style: disc inside;
}

ul li {
    margin-bottom: 8px;
}

/* Map */
#map {
    height: 400px;
    width: 100%;
    border-radius: 8px;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background-color: #023e8a;
    color: white;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Responsive */
@media (max-width: 600px) {
    nav a {
        display: block;
        margin: 5px 0;
    }

    header h1 {
        font-size: 2em;
    }
}
