  
.banner {
  position: relative;
  height: 250px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.banner::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url('../images/contactUS.png'); /* your image */
  background-size: cover;
  background-position: center;
  filter: blur(4px);
  z-index: 1;
  transform: scale(1.05); /* prevents blur edges */
}

.banner h1 {
  position: relative;
  z-index: 2;
  font-size: 36px;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.6);
}

.back-link {
  position: absolute;
  top: 15px;
  left: 20px;
  z-index: 2;
  color: white;
  text-decoration: none;
  font-weight: bold;
  background-color: rgba(0, 0, 0, 0.4);
  padding: 6px 12px;
  border-radius: 5px;
}

    .container {
      max-width: 700px;
      margin: 40px auto;
      padding: 20px;
      background-color: #fff;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
      border-radius: 8px;
    }

    .section {
      margin-bottom: 30px;
    }

    .section h2 {
      color: #004085;
      margin-bottom: 10px;
      font-size: 20px;
      border-bottom: 2px solid #dee2e6;
      padding-bottom: 5px;
    }

    .map-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 ratio */
  height: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

    .info {
      font-size: 16px;
      line-height: 1.6;
    }

    @media (max-width: 600px) {
      .container {
        margin: 20px;
      }
      
    }

