body, html {
  margin: 0;
  font-family: Arial, sans-serif;
}

.language-buttons {
  float: right;
  right: 50px;
  margin-top: 15px;
  margin-bottom: 15px;
  margin-right: 50px;
}

.language-buttons button {
  background-color: #1b77a6;
  color: white;
  border: none;
  padding: 10px 15px;
  margin-left: 5px;
  cursor: pointer;
  border-radius: 5px;
  font-size: 1em;
}

.language-buttons button:hover {
  background-color: #2895cd;
}

.image-section {
  height: 50vh;
  margin: auto 50px auto 50px;
  background-size: cover;
  //background-size: contain;
  //background-repeat: no-repeat;
  background-position: center;
  position: relative;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0,0,0,0.4);
}

.title-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.7);
  font-size: 2em;
  text-align: center;
  z-index: 2;
}

.text-section {
  padding: 40px 20px;
  background-color: #ffffff;
  line-height: 1.6;
  font-size: 1.1em;
}

.text-section p {
  max-width: 1000px;
  margin: 0 auto 20px auto;
}

.text-section ul {
  max-width: 1000px;
  margin: 0 auto 20px auto;
}

.maillink {
  max-width: 1000px;
  margin: auto;
  text-align: center;
}

#map-container {
  position: relative;
  height: 50vh;
  overflow: hidden;
  margin-top: -30px;
  margin-bottom: 30px;
  padding: 2px;
}

#map {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50vw;
  height: 50vh;
  transform: translate(-50%, -50%);
}

/* 🔴 This hides the focus outline (rectangle) */
  .leaflet-interactive:focus {
    outline: none;
}