body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #FAFAFA; /* Off-white background */
    color: #001F3F; /* Navy blue text color */
}

h2 {
    color: #001F3F; /* Navy blue for heading text */
}

#map {
    height: 500px;
    width: 100%;
    margin-top: 60px; /* To avoid overlap with the logo */
}

#logo {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}

a.button {
    display: inline-block;
    background-color: #001F3F; /* Navy blue background for button */
    color: white; /* White text color */
    padding: 10px 20px; /* Space inside the button */
    text-decoration: none; /* Remove underline */
    border-radius: 5px; /* Rounded corners */
    transition: background-color 0.3s; /* Smooth transition for hover effect */
}

a.button:hover {
    background-color: #003366; /* Darker shade on hover */
}
