/* about.css */
#about {
  background-color: #f9f9f9;
  padding: clamp(1.5rem, 4vw, 3rem);
  border-radius: 16px;
}

#about p {
  font-size: clamp(1rem, 2vw, 1.1rem);
  line-height: 1.8;
  margin-bottom: 1rem;
}

#map h2 {
  margin-bottom: 1.25rem;
}

.map-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media (max-width: 767.98px) {
  #about {
    padding: 1.25rem;
    border-radius: 12px;
  }

  .map-container {
    padding-bottom: 75%;
  }
}


  