* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #f4f4f4;
    color: #333;
}

/* HEADER */
.top-bar {
    background-color: #0055a4;
    color: white;
    padding: 8px 20px;
    font-size: 14px;
}

nav {
    background-color: #003b75;
}

nav ul {
    display: flex;
    list-style: none;
    justify-content: center;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    display: block;
    padding: 15px;
    color: white;
    text-decoration: none;
    font-weight: bold;
}

nav ul li a:hover {
    background-color: #0055a4;
}

/* HERO */
.hero {
    background-color: #e6e6e6;
    padding: 60px 20px;
    text-align: center;
}

.hero h1 {
    margin-bottom: 10px;
}

.hero p {
    font-size: 18px;
}

/* CONTENT */
.content {
    background: white;
    max-width: 800px;
    margin: 40px auto;
    padding: 30px;
    border-radius: 6px;
}

.content h2 {
    margin-bottom: 15px;
}

.content p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.btn {
    display: inline-block;
    padding: 12px 20px;
    background-color: #0055a4;
    color: white;
    text-decoration: none;
    border-radius: 4px;
}

.btn:hover {
    background-color: #003b75;
}

/* FOOTER */
footer {
    background-color: #222;
    color: white;
    padding: 40px 20px;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.map, .contact {
    width: 300px;
    margin: 10px;
}

.fake-map {
    background-color: #444;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 20px;
}

.contact h3 {
    margin-bottom: 10px;
}
