body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #f4fff4;
    text-align: center;
  }
  
  /* JUDUL */
  .judul {
    margin-top: 40px;
    font-size: 28px;
    font-weight: bold;
    color: #2e7d32;
  }
  
  /* DESKRIPSI */
  .lokasi-text {
    margin: 15px auto 30px;
    max-width: 800px;
    font-size: 16px;
    color: #333;
    line-height: 1.6;
  }
  
  /* LINK GMAPS */
  .lokasi-text a {
    color: #1e88e5;
    text-decoration: none;
    font-weight: bold;
  }
  
  .lokasi-text a:hover {
    text-decoration: underline;
  }
  
  /* CONTAINER MAP */
  .map-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
  }
  
  /* BOX MAP */
  .map-box {
    width: 100%;
    max-width: 900px;
    height: 450px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  }
  
  /* IFRAME RESPONSIVE */
  .map-box iframe {
    width: 100%;
    height: 100%;
    border: 0;
  }