.map-section {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: flex-start;
      gap: 30px;
      padding: 40px 20px;
      max-width: 1200px;
      margin: auto;
    }

    .info-box {
      flex: 1;
      max-width: 100%;
      padding: 20px;
      background: #fff;
      border-radius: 10px;
      box-shadow: 0 0 15px rgba(0,0,0,0.1);
    }
    
    .info-box img {
      max-width: 100%;
      position: relative;
      border-radius: 10px;
      margin-bottom: 15px;
      box-shadow: 0 0 10px rgba(0,0,0,0.15);
    }

    .info-box h3 {
      color: #0f8522;
      margin-bottom: 10px;
      
    }

    .info-box p {
      text-align: justify;
      color: #333;
      font-size: 1rem;
      line-height: 1.6;
    }
    .sambutan-text {
      margin-top: 20px;
    }
    
    .sambutan-text h3 {
      color: #0f8522;
      margin-bottom: 15px;
    }
    
    .sambutan-text p {
      text-align: justify;
      margin-bottom: 15px;
      line-height: 1.6;
      color: #333;
    }

    #map {
      flex: 1;
      height: 40vh;
      min-height: 300px;
      border: 2px solid #0f8522;
      border-radius: 10px;
      box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
    }

    @media screen and (max-width: 768px) {
      .map-section {
        flex-direction: column;
        align-items: center;
      }
      .info-box > div {
      flex-direction: column;
      }
    
    
      #map {
        width: 100%;
      }
    }
    