/* Map + layout */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

#map {
  height: 500px;
  width: 100%;
  flex-grow: 1;
}

header {
  background-color: #333;
  color: #fff;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 20px;
}

header .logo {
  font-size: 30px;
  font-weight: bold;
}

header .map-links {
  display: flex;
  gap: 15px;
  font-size: 18px;
}

header .map-links a {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}

footer {
  background-color: #333;
  color: #fff;
  padding: 15px;
  text-align: left;
  font-size: 16px;
}

footer .footer-content > div {
  margin: 5px 0;
}

footer a.footer-phone {
  color: #fff;
  text-decoration: none;
}

@media (max-width: 768px) {
  header {
    flex-direction: column;
    text-align: center;
    font-size: 16px;
  }

  .map-links {
    justify-content: center;
    margin-top: 10px;
  }
}
