:root {
  --background: #f5f7fa;
  --text: #1c1c28;
  --accent: #0067c5;
  --accent-light: #5ba8ff;
  --surface: #ffffff;
  --muted: #6f7780;
  --border: #e1e6ee;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  background: var(--background);
  color: var(--text);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  text-align: center;
}

h1,
h2 {
  margin: 0 0 0.5rem;
  font-family: 'Poppins', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 700;
}

p {
  margin: 0 0 1rem;
  line-height: 1.7;
  color: var(--muted);
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--accent-light);
}

.hero {
  background: var(--surface);
  padding: 2rem 1.5rem 1.5rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 12px 30px rgba(15, 25, 45, 0.08);
}

.hero-content {
  max-width: 600px;
  margin: 0 auto;
}

.hero-image {
  width: 88px;
  height: auto;
  margin: 0 auto 1rem;
}

.site-title {
  font-size: 2rem;
  letter-spacing: 0.02em;
  color: var(--text);
  font-family: 'Poppins', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.section-links {
  margin: 1rem 0 0.5rem;
  display: inline-flex;
  justify-content: center;
  flex-wrap: wrap;
}

.section-links a {
  font-weight: 500;
  padding: 0 0.5rem;
}

.section-links a + a::before {
  content: '|';
  color: var(--muted);
  margin: 0 0.5rem;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.map-section {
  flex: 1;
  display: flex;
  padding: 0 0 2.5rem;
}

#map {
  flex: 1;
  min-height: 420px;
  width: 100%;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  box-shadow: inset 0 1px 0 rgba(15, 25, 45, 0.05);
}

.info-section {
  padding: 2.5rem 1.5rem;
  border-top: 1px solid var(--border);
  background: var(--surface);
}

.section-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.section-nav {
  display: inline-flex;
  align-items: center;
  font-size: 0.95rem;
}

.section-nav a {
  padding: 0 0.5rem;
}

.section-nav a + a::before {
  content: '|';
  color: var(--muted);
  margin: 0 0.5rem;
}

.page-footer {
  text-align: center;
  padding: 2rem 1.5rem 3rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.page-footer a {
  font-weight: 600;
}

@media (max-width: 600px) {
  .hero {
    padding: 1.75rem 1.25rem 1.5rem;
  }

  .hero-image {
    width: 72px;
  }

  .site-title {
    font-size: 1.75rem;
  }

  .map-section {
    padding-bottom: 2rem;
  }

  .info-section {
    padding: 2rem 1.25rem;
  }
}
