body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background: #111;
  color: #eee;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.header {
  max-width: 900px;
  padding: 10px 10px;
}

.header h2,
.header p {
  margin: 5px 0; /* reduce top/bottom spacing */
}

#map {
  flex: 1;
  width: 100%;
}


footer {
  background-color: rgba(31, 31, 31, 0.9);
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
}

.footer-left {
  padding-right: 20px;
}

.footer-right {
  position: static; /* don’t absolutely position */
}
.footer-logo {
  max-height: 60px;
  height: auto;
  padding-top: 5px;
}