body {
    font-family: Arial, sans-serif;
    margin: 0;
}

header {
    background: #C99700;
    color: white;
    padding: 20px;
    text-align: center;
}

nav a {
    color: white;
    margin-right: 15px;
    text-decoration: none;
}

.hero {
    text-align: center;
    padding: 80px 20px;
    background: #f1f5f9;
}

.hero-content {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 30px auto 0;
}

.hero-image-link,
.hero-map {
    flex: 1 1 320px;
    max-width: 560px;
}

.hero-image {
    width: 100%;
    border-radius: 12px;
    display: block;
}

.hero-map iframe {
    width: 100%;
    min-height: 450px;
    border-radius: 12px;
    border: 0;
    display: block;
}
footer {
    text-align: center;
    padding: 20px 0;
    background: #f1f5f9;
    color: #333;
}