:root {
  --accent: #2b6cb0;
  --light: #f7fafc;
  --dark: #1a202c;
  --font: 'Helvetica Neue', Arial, sans-serif;
}

body {
  margin: 0;
  font-family: var(--font);
  line-height: 1.6;
  background: var(--light);
  color: var(--dark);
  padding: 1rem;
}

header {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  margin-bottom: 1rem;
  text-align: center;
}

header img.logo {
  max-width: 120px;
  margin-bottom: 1rem;
}

h1 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

h2 {
  font-size: 1.4rem;
  margin-top: 2rem;
}

p {
  margin: 0.5rem 0;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

main {
  padding-bottom: 2rem;
}

#map {
  width: 100%;
  height: 300px;
  background: #ddd;
  border-radius: 8px;
  margin-top: 1rem;
}

footer {
  font-size: 0.9rem;
  text-align: center;
  color: #666;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  body {
    padding: 2rem;
    max-width: 800px;
    margin: auto;
  }

  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.6rem;
  }
}

