@charset "utf-8";
/* CSS Document */

.map-section {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
  }

  .map-container {
    width: 100%;
    height: 100%;
    pointer-events: none; /* makes the map unclickable */
  }

  iframe {
    width: 100%;
    height: 100%;
    border: 0;
  }

  .content-wrapper {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    max-width: 1200px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    box-sizing: border-box;
  }

  .contact-box {
    background: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    padding: 25px 30px;
    max-width: 400px;
    border-radius: 8px;
  }

  .contact-box h2 {
    margin-top: 0;
    font-size: 1.5em;
    color: #2c3e50;
  }

  .contact-box p {
    margin: 6px 0;
    font-size: 1em;
    color: #333;
  }

  @media (max-width: 768px) {
 
    .map-section {
      height: 650px;
    }

.content-wrapper {
    position: absolute;
    top: 200px;
    left: 50%;
    max-width: 1200px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    box-sizing: border-box;
  }

  .contact-box {
    background: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    padding: 25px 30px;
    border-radius: 8px;
  }
  }