body {
    font-family: Arial, sans-serif;
    background: #fdfdfd;
    color: #222;
    margin: 0;
    padding: 0;
}

header {
    background: #e6e6e6;
    padding: 10px;
    position: relative;
}

header h1 {
    margin: 0;
    font-size: 22px;
}

header img {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 60px;
}

nav {
    background: #ccc;
    padding: 8px;
    text-align: center;
}

nav a {
    margin: 0 10px;
    text-decoration: none;
    color: #000;
    font-weight: bold;
}

nav a:hover {
    text-decoration: underline;
}

main {
    padding: 15px;
}

.map {
    text-align: center;
    margin: 20px 0;
}

footer {
    background: #e6e6e6;
    text-align: center;
    padding: 8px;
    margin-top: 20px;
    font-size: 14px;
}