* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
  }
  
  .contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 20px;
    padding: 20px;
    border: 1px solid #ccc;
    background-color: white;
  }
  
  .contact-map {
    flex: 1;
    /* min-width: 300px;ss */
    height: 400px;
    margin: 0 auto; /* Center it */ 
  }
  
  .contact-details {
    flex: 1;
    /* min-width: 300px; */
    padding: 20px;
    /* background-color: #f0f0f0; */
    border-left: 1px solid #ccc;
  }
  
  .contact-details h2 {
    margin-bottom: 20px;
  }

  
  .map-frame {
    
    width: 500px;
    height: 400px;
  }
  
  .contact-details p {
    margin-bottom: 15px;
    font-size: 16px;
  }

  @media  (min-width: 992px) and (max-width: 1280px) {

    .map-frame {
      width: 400px;
      height: 300px;
    }
  .contact-map, .contact-details {
    height: 300px;
    margin-bottom: 20px;
  }
}


  @media  (min-width: 769px) and (max-width: 991px) {

      .map-frame {
        width: auto;
        height: 300px;
      }
    .contact-map, .contact-details {
      height: 300px;
      margin-bottom: 20px;
    }
  }
  
  @media  (min-width: 421px) and (max-width: 768px) {
    .contact-container {
      flex-direction: column;
    }
  
    .contact-map, .contact-details {
      height: 300px;
      margin-bottom: 20px;
    }
  }

  @media (max-width: 420px) {
    .contact-container {
      flex-direction: column;
    }
    .map-frame {
        height: 250px;
        width: 260px;
      }
  
    .contact-map, .contact-details {
      height: 300px;
      margin-bottom: 20px;
    }
  }
  