body {
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    font-family: 'Roboto', sans-serif;
    color: #333;
}

.header {
    text-align: center;
    padding: 20px;
    font-size: 24px;
}

.navbar {
    background-color: #2c3e50;
    display: flex;
    justify-content: center;
    padding: 10px 0;
}

.navbar a {
    color: white;
    padding: 10px 15px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.navbar a:hover {
    background-color: #34495e;
}

#map {
    height: 80vh;
    margin: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.footer {
    text-align: center;
    padding: 20px;
    background-color: #2c3e50;
    color: white;
}

/* Legend styling */
#legend {
    background-color: white;
    padding: 10px;
    margin: 0;
    border: 1px solid #000;
    font-size: 14px;
    line-height: 18px;
    border-radius: 5px;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
    max-width: 200px;
}

.color-box {
    height: 15px;
    width: 30px;
    display: inline-block;
    margin-right: 5px;
}

.color-line {
    height: 5px;
    width: 30px;
    display: inline-block;
    margin-right: 5px;
}


.purple { background: #ff00ff; }
.blue { background: #0000ee; }
.red { background: red; }

/* Additional styles for mobile responsiveness */
@media screen and (max-width: 768px) {
    #legend {
        font-size: 12px;
        padding: 5px;
    }
}

/* Additional Styles for About Us Page */

.text-section {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	text-align: center;
}



.text-section p {
    text-align: left;
    text-indent: 30px;
    margin-bottom: 30px; 
	line-height: 2.0;
}


.text-section h2 {
    margin-bottom: 20px;
    color: #2c3e50;
}

.text-section ul {
    text-align: left;
    list-style: disc outside none;
    padding-left: 20px; 
}

.text-section li {
    margin-bottom: 10px; 
}


.brand-name {
    text-decoration: none;
    color: inherit;
    font-size: 1.5em;
}

.nav-link {
    text-decoration: none;
    color: inherit;
    margin: 0 15px;
    font-weight: bold;
}
