* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
  }
  
  body {
    background-color: #f0f4f3;
    color: #1e1e1e;
  }
  
  /* Navbar */
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 60px;
    background-color: #0b2f2a;
    color: white;
  }
  
  .logo {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  
  .logo img {
    height: 40px;
  }
  
  .logo span {
    font-weight: 600;
    font-size: 16px;
    line-height: 1.3;
  }
  
  /* Buttons */
  .btn-primary {
    background-color: #3ae373;
    border: none;
    padding: 10px 20px;
    border-radius: 10px;
    color: #ffffff;
    font-weight: bold;
    cursor: pointer;
  }
  
  .btn-secondary {
    background-color: transparent;
    border: 1px solid #3ae373;
    color: #3ae373;
    padding: 10px 20px;
    border-radius: 10px;
    margin-right: 10px;
    font-weight: bold;
    cursor: pointer;
  }
  
  .btn-green {
    background-color: #3ae373;
    color: white;
    padding: 12px 24px;
    border-radius: 12px;
    border: none;
    font-size: 16px;
    font-weight: bold;
    margin-top: 20px;
    cursor: pointer;
  }
  
  /* Hero Section */
  .hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to bottom, #0b2f2a, #197c65);
    color: white;
    padding: 60px;
    border-bottom-left-radius: 80px;
    border-bottom-right-radius: 80px;
  }
  
  .hero-content {
    max-width: 50%;
  }
  
  .hero-content h1 {
    font-size: 42px;
    font-weight: bold;
  }
  
  .hero-content p {
    font-size: 18px;
    margin-top: 16px;
    line-height: 1.6;
  }
  
  .hero-illustration img {
    max-width: 420px;
  }
  
  /* Misi Section */
  .misi {
    padding: 60px;
    text-align: center;
  }
  
  .misi h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #17594A;
  }
  
  .misi p {
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto 40px auto;
    color: #444;
  }
  
  .map-container {
    position: relative;
    display: flex;
    justify-content: center;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  }
  
  .map-container img {
    max-width: 100%;
    border-radius: 20px;
  }
  
  .legend {
    position: absolute;
    top: 20px;
    right: 20px;
    background: white;
    padding: 12px 16px;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    font-size: 14px;
  }
  
  .legend ul {
    list-style: none;
  }
  
  .legend li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
  }
  
  .dot.green { background-color: #00c853; }
  .dot.blue { background-color: #2979ff; }
  .dot.gray { background-color: #9e9e9e; }
  .dot.purple { background-color: #9c27b0; }
  