<style>
    body {
      margin: 0;
      font-family: Arial, sans-serif;
    }

    .slider {
     position: relative;
      overflow: hidden;
      width: 100%;
      max-width: 100%;
      height: 678px;
      margin: 85px j;
      border-radius: 0px;
    }

    .slides {
      display: flex;
      width: 100%;
      height: 100%;
      transition: transform 0.5s ease-in-out;
    }

    .slide {
      width: 100%;
      flex-shrink: 0;
      height: 100%;
      background-size: cover;
      background-position: center;
      transition: filter 0.3s ease, border 0.3s ease;
    }

    .slide:hover {
      filter: brightness(0.85);
      border: 2px solid transparent;
    }

    /* Example slide backgrounds */
    .slide1 { background-image: url('images/banners.jpg'); }
    .slide2 { background-image: url(''); }
    .slide3 { background-image: url(''); }


    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: Arial, sans-serif;
    }

    .banner {
      position: relative;
      width: 100%;
      height: 60vh;
      background-image: url('');
      background-size: cover;
      background-position: center;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      text-align: center;
    }

    .banner h1 {
      font-size: 2.5rem;
      background: rgba(0, 0, 0, 0.5);
      padding: 15px 20px;
      border-radius: 10px;
    }

    @media (max-width: 320px) {
      .banner {
        height: 50vh;
        background-image: url('');
      }

      .banner h1 {
        font-size: 1.5rem;
        padding: 10px 15px;
      }
    }

    @media (max-width: 320px) {
      .banner {
        height: 40vh;
        background-image: url('');
      }

      .banner h1 {
        font-size: 1.2rem;
      }
    }


     .map-container {
      position: relative;
      width: 100%;
      height: 400px;
      overflow: hidden;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    .map-container iframe {
      width: 100%;
      height: 100%;
      border: 0;
    }

    @media (max-width: 320px) {
      .map-container {
        height: 300px;
      }
    }
  </style>