/* Map Section Container */
   .map-section {
      max-width: 800px;
      margin: 0 auto;
      background: #fff;
      padding: 30px;
      border-radius: 12px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    }
    .map-header {
      text-align: center;
      margin-bottom: 25px;
    }
    .map-header h2 {
      font-size: 2rem;
      margin-bottom: 8px;
    }
    
    /* Responsive Map Container */
    .map-container {
      position: relative;
      width: 100%;
      padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
      height: 0;
      border-radius: 8px;
      overflow: hidden;
      border: 1px solid #e0e0e0;
    }
    #map {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
    }

    @media (max-width: 768px) {
      .map-container {
        padding-bottom: 75%; /* Taller aspect ratio for mobile screens */
      }
    }