@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

    body {
      margin: 0;
      font-family: 'Poppins', sans-serif;
      background-color: #f9fbfd;
      color: #1b1b1b;
      overflow-x: hidden;
    }

    header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 5px 10%;
    }

    header h1 {
      font-size: 1.0em;
      font-weight: 600;
      color: #1a365d;
    }

header a {
      text-decoration: none;
      color: #1a365d;
      font-size: 1.6em;
      font-weight: 700;
      transition: color 0.3s;
    }

    header a:hover {
      color: #3182ce;
    }

.top-menu {
  margin-left: auto;
}

.menu-link {
  text-decoration: none;
  color: #1a365d;
  font-weight: 600;
  font-size: 1em;
  padding: 10px 15px;
  border-radius: 8px;
  transition: background 0.3s, color 0.3s;
}

.menu-link:hover {
  background-color: #e2e8f0;
  color: #2b6cb0;
}


    .hero {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px 10% 20px;
      flex-wrap: wrap;
      position: relative;
      overflow: hidden;
    }

    .hero-text {
      max-width: 500px;
      z-index: 2;
    }

    .hero-text h2 {
      font-size: 2.2em;
      font-weight: 700;
      color: #1a365d;
      margin-bottom: 10px;
    }

    .hero-text p {
      font-size: 1.1em;
      margin-bottom: 10px;
      color: #4a5568;
    }

    .contact-buttons {
      display: flex;
      gap: 15px;
    }

    .contact-buttons a {
      text-decoration: none;
      color: white;
      font-size: 1.3em;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      transition: transform 0.3s;
    }

    .contact-buttons a:hover {
      transform: translateY(-5px);
    }

    /* Warna sesuai brand */
    .email { background: #555; }        /* Abu-abu untuk email */
    .whatsapp { background: #25D366; }  /* Hijau WhatsApp */
    .telegram { background: #0088cc; }  /* Biru Telegram */

    .hero-image img {
      max-width: 420px;
      width: 100%;
      z-index: 2;
      position: relative;
    }

    /* Wave background */
    .wave {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 250px;
      background: url('https://raw.githubusercontent.com/konpa/devicon/master/icons/wave/wave.svg') no-repeat bottom;
      background-size: cover;
      opacity: 0.1;
    }

    footer {
      text-align: center;
      padding: 5px 10%;
      background-color: #edf2f7;
      color: #2d3748;
      font-size: 0.9em;
      z-index: 3;
      position: relative;
    }

footer a {
      color: #1a365d;
      text-decoration: none;
      font-weight: 600;
      transition: color 0.3s;
    }

    footer a:hover {
      color: #3182ce;
    }

/* Responsive Header - tetap sejajar kiri kanan */
@media (max-width: 768px) {
  header {
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 10px 20px;
  }

  header h1 {
    font-size: 1.2rem;
    margin: 0;
    flex: 1;
    white-space: nowrap;
  }

  nav {
    flex: 1;
    text-align: right;
  }

  nav a {
    font-size: 0.9rem;
    padding: 5px 10px;
  }

  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-text {
    width: 100%;
    margin-bottom: 20px;
  }

  .hero-image {
    width: 80%;
    max-width: 300px;
  }
}