body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #333;
}

/* HEADER */
header {
    background: #0b3d91;
    color: white;
}

.container {
    display: flex;
    justify-content: space-between;
    padding: 15px 20px;
    align-items: center;
}

.logo {
    height: 50px;
}

nav a {
    color: white;
    margin-left: 20px;
    text-decoration: none;
}

/* HERO */
.hero {
    background: #e6eefc;
    text-align: center;
    padding: 80px 20px;
}

.hero h1 {
    margin-bottom: 10px;
}

/* SECTIONS */
.section {
    padding: 50px 20px;
    text-align: center;
}

.light {
    background: #f5f5f5;
}

/* GRID */
.grid {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.card {
    width: 220px;
    padding: 15px;
    background: white;
    border: 1px solid #ddd;
}

.card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
}

/* IMAGES */
img {
    max-width: 120px;
}

/* MAP BUTTON */
.map-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background: #0b3d91;
    color: white;
    text-decoration: none;
}

/* FOOTER */
footer {
    background: #222;
    color: white;
    text-align: center;
    padding: 15px;
}