.map-container {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-bottom: 30px;
  padding: 15px;
  border-bottom: 1px solid #eee;
}

.map-image {
  border: 2px solid #333;
  box-shadow: 5px 5px 15px rgba(0,0,0,0.2);
  border-radius: 12px;
  width: 200px;
  height: 200px;
  object-fit: contain;
  background-color: #f9f9f9;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.map-image:hover {
  transform: scale(1.02);
}

.map-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 1.05em;
}

.map-links a {
  text-decoration: none;
  color: #0056b3;
  transition: color 0.2s;
}

.map-links a:hover {
  color: #003d80;
  text-decoration: underline;
}