/* style.css */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
}

header {
    background-color: #00247d;
    color: white;
    padding: 20px;
    text-align: center;
}

nav {
    background-color: #e0e0e0;
    padding: 10px;
    text-align: center;
}

nav a {
    margin: 0 15px;
    text-decoration: none;
    color: #00247d;
    font-weight: bold;
}

section {
    padding: 20px;
    max-width: 1000px;
    margin: auto;
    background-color: white;
}

footer {
    background-color: #00247d;
    color: white;
    text-align: center;
    padding: 10px;
    margin-top: 20px;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
}

.gallery img {
    width: 200px;
    height: auto;
    border: 2px solid #ccc;
    border-radius: 5px;
    transition: transform 0.3s ease;
}

.gallery img:hover {
    transform: scale(1.05);
    border-color: #333;
}

 /* Optional: Add some styling for the map */
.map-container {
	margin-top: 20px;
	width: 100%;
	height: 400px;
}

iframe {
	width: 100%;
	height: 100%;
	border: 0;
}

footer a, header a {
    color: #007BFF;
    text-decoration: none;
    font-weight: bold;
}
footer a:hover, header a:hover {
    text-decoration: underline;
}