
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Poppins', sans-serif;
    }

    body {
      background-color: #ffffff;
      color: #333;
    }

    /* ===== NAVBAR ===== */
    /* Navbar dasar */
nav {
  background: white;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
}

.logo img {
  height: 40px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.nav-links li {
  display: inline-block;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: 0.3s;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
}

.nav-links a:hover {
  background: #ff6600;
  color: white;
}

/* Toggle menu (mobile) */
.menu-toggle {
  font-size: 1.5rem;
  cursor: pointer;
  display: none;
}

/* Responsif */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 1rem;
    background: white;
    width: 200px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    padding: 1rem;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links a {
    padding: 0.75rem;
    border-radius: 6px;
  }
}

    /* ===== HERO SECTION ===== */
    .hero {
      height: 100vh;
      background: #1B5E20;
      display: flex;
      justify-content: center;
      align-items: center;
      text-align: center;
      color: #fff;
      padding: 0 20px;
    }

    .hero h1 {
      font-size: 2.5rem;
      line-height: 1.3;
      margin-bottom: 15px;
    }

    .hero p {
      font-size: 1.1rem;
      margin-bottom: 25px;
      color: #fdfdfd;
    }

    .btn-primary {
      background-color: #F9A825;
      color: #1B5E20;
      padding: 12px 28px;
      font-weight: 600;
      border-radius: 6px;
      text-decoration: none;
      transition: background 0.3s;
    }

    .btn-primary:hover {
      background-color: #ffb300;
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 768px) {
      nav ul {
        display: none;
      }

      .hero h1 {
        font-size: 1.8rem;
      }

      .hero p {
        font-size: 1rem;
      }
    }
  

  /* ===== TENTANG SECTION ===== */
  .tentang-section {
    position: relative;
    background: linear-gradient(135deg, #f5f5f5 50%, #F9A825 50%);
    clip-path: polygon(0 0, 100% 5%, 100% 100%, 0 95%);
    padding: 100px 40px;
  }

  .tentang-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
    flex-wrap: wrap;
    gap: 50px;
  }

  .tentang-text {
    flex: 1 1 45%;
  }

  .tentang-text h2 {
    font-size: 2rem;
    color: #1B5E20;
    margin-bottom: 20px;
  }

  .tentang-text p {
    color: #333;
    margin-bottom: 20px;
    line-height: 1.7;
  }

  .tentang-text ul {
    list-style: none;
    margin-bottom: 30px;
  }

  .tentang-text li {
    background: #ffffff;
    margin-bottom: 10px;
    padding: 10px 15px;
    border-radius: 8px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
    font-weight: 500;
  }

  .tentang-foto {
    flex: 1 1 45%;
    text-align: center;
  }

  .tentang-foto img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    transform: rotate(2deg);
    transition: transform 0.5s;
  }

  .tentang-foto img:hover {
    transform: rotate(-2deg) scale(1.03);
  }

  /* Responsif */
  @media (max-width: 900px) {
    .tentang-container {
      flex-direction: column;
      text-align: center;
    }

    .tentang-foto img {
      width: 90%;
      transform: none;
    }

    .tentang-section {
      clip-path: none;
      background: linear-gradient(to bottom, #f5f5f5 70%, #F9A825 30%);
    }
  }


  /* ===== PROBLEM & SOLUTION ===== */
  .problem-solution {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    min-height: 500px;
  }

  .problem, .solution {
    flex: 1 1 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
  }

  /* Left side (Problem) */
  .problem {
    background: linear-gradient(135deg, #1B5E20 20%, #0f3813 100%);
    clip-path: polygon(0 0, 100% 8%, 100% 100%, 0 92%);
  }

  /* Right side (Solution) */
  .solution {
    background: linear-gradient(135deg, #F9A825 10%, #FFD54F 100%);
    color: #1B5E20;
    clip-path: polygon(0 8%, 100% 0, 100% 92%, 0 100%);
  }

  .content {
    max-width: 500px;
  }

  .problem h2, .solution h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 700;
  }

  .problem ul, .solution ul {
    list-style: none;
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .solution h2 span {
    color: #ffffff;
    background: #1B5E20;
    padding: 2px 8px;
    border-radius: 6px;
  }

  .btn-cta {
    display: inline-block;
    background-color: #1B5E20;
    color: #fff;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s, transform 0.2s;
  }

  .btn-cta:hover {
    background-color: #145a18;
    transform: scale(1.05);
  }

  /* RESPONSIVE */
  @media (max-width: 900px) {
    .problem, .solution {
      flex: 1 1 100%;
      clip-path: none;
    }

    .problem {
      background: linear-gradient(to bottom, #1B5E20 70%, #0f3813);
    }

    .solution {
      background: linear-gradient(to bottom, #F9A825, #FFD54F);
    }

    .content {
      text-align: center;
    }
  }


  /* ===== CTA SECTION ===== */
  .cta-section {
    position: relative;
    background: radial-gradient(circle at center, #2E7D32 0%, #1B5E20 70%);
    text-align: center;
    padding: 100px 30px;
    overflow: hidden;
  }

  .cta-section::before, .cta-section::after {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(249, 168, 37, 0.25);
    border-radius: 50%;
    filter: blur(60px);
    animation: float 8s ease-in-out infinite alternate;
  }

  .cta-section::before {
    top: -50px;
    left: 10%;
  }

  .cta-section::after {
    bottom: -50px;
    right: 15%;
    animation-delay: 4s;
  }

  @keyframes float {
    from { transform: translateY(0); }
    to { transform: translateY(20px); }
  }

  .cta-content {
    max-width: 800px;
    margin: auto;
    position: relative;
    z-index: 2;
  }

  .cta-content h2 {
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
    color: #F9A825;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
  }

  .cta-btn {
    background: #F9A825;
    color: #1B5E20;
    padding: 14px 32px;
    font-size: 1.1rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(249,168,37,0.4);
    transition: transform 0.3s, box-shadow 0.3s;
  }

  .cta-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 25px rgba(249,168,37,0.6);
  }

  /* RESPONSIVE */
  @media (max-width: 768px) {
    .cta-content h2 {
      font-size: 1.8rem;
    }

    .cta-content p {
      font-size: 1rem;
    }

    .cta-btn {
      font-size: 0.8rem;
      padding: 8px 12px;
    }
  }


  /* ===== FLYER 5 MINIMALIS ===== */
  .flyer5-section {
    padding: 90px 30px;
    text-align: center;
    background: #ffffff;
  }

  .flyer5-section h2 {
    font-size: 2rem;
    color: #1B5E20;
    margin-bottom: 8px;
  }

  .flyer5-subtitle {
    color: #666;
    font-size: 1rem;
    margin-bottom: 50px;
  }

  .flyer5-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: auto;
  }

  .flyer5-item {
    background: #f9f9f9;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
  }

  .flyer5-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-bottom: 3px solid #F9A825;
  }

  .flyer5-item h3 {
    font-size: 1rem;
    padding: 15px;
    color: #1B5E20;
    font-weight: 600;
  }

  .flyer5-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 6px 18px rgba(249,168,37,0.3);
  }

  /* Efek subtle border */
  .flyer5-item::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(249,168,37,0.2);
    border-radius: 16px;
    pointer-events: none;
  }

  /* RESPONSIVE */
  @media (max-width: 768px) {
    .flyer5-item img {
      height: 150px;
    }
  }


  /* ===== KEUNGGULAN SECTION ===== */
  .keunggulan-section {
    background: #fdfdfd;
    padding: 90px 40px;
  }

  .keunggulan-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
    gap: 40px;
    flex-wrap: wrap;
  }

  /* TEKS */
  .keunggulan-text {
    flex: 1;
    min-width: 300px;
  }

  .keunggulan-text h2 {
    font-size: 2rem;
    color: #1B5E20;
    margin-bottom: 20px;
  }

  .keunggulan-text ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 25px;
  }

  .keunggulan-text ul li {
    background: #f4f4f4;
    border-left: 5px solid #F9A825;
    margin-bottom: 12px;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 1rem;
    color: #333;
    transition: transform 0.2s ease, background 0.2s ease;
  }

  .keunggulan-text ul li:hover {
    transform: translateX(5px);
    background: #fffbe6;
  }

  /* BUTTON */
  .btn-keunggulan {
    display: inline-block;
    background: linear-gradient(135deg, #1B5E20, #388E3C);
    color: #fff;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.2s ease;
  }

  .btn-keunggulan:hover {
    background: linear-gradient(135deg, #2E7D32, #43A047);
    transform: translateY(-2px);
  }

  /* FLYER */
  .keunggulan-flyer {
    flex: 1;
    text-align: center;
  }

  .keunggulan-flyer img {
    width: 100%;
    max-width: 420px;
    border-radius: 20px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
  }

  .keunggulan-flyer img:hover {
    transform: scale(1.03);
  }

  /* RESPONSIVE */
  @media (max-width: 900px) {
    .keunggulan-container {
      flex-direction: column;
      text-align: center;
    }

    .keunggulan-flyer img {
      max-width: 320px;
      margin-top: 20px;
    }
  }


  /* ===== FOOTER ===== */
  .footer {
    background: #1B5E20;
    color: #fff;
    padding: 60px 40px 30px;
  }

  .footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 60px;
    max-width: 1200px;
    margin: auto;
  }

  /* LOGO + DESKRIPSI */
  .footer-left {
    flex: 1.2;
    min-width: 300px;
  }

  .footer-logo {
    width: 140px;
    margin-bottom: 15px;
    filter: drop-shadow(0 2px 3px rgba(0,0,0,0.3));
  }

  .footer-left p {
    line-height: 1.7;
    color: #e0e0e0;
    font-size: 0.95rem;
  }

  /* KONTAK & SOSIAL */
  .footer-right {
    flex: 1;
    min-width: 300px;
  }

  .footer-right h4 {
    font-size: 1.2rem;
    color: #F9A825;
    margin-bottom: 18px;
  }

  .contact-list {
    list-style: none;
    padding-left: 0;
  }

  .contact-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .contact-list i {
    color: #F9A825;
    width: 20px;
    font-size: 1.1rem;
  }

  .contact-list a {
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
  }

  .contact-list a:hover {
    color: #F9A825;
  }

  /* COPYRIGHT */
  .footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.15);
    margin-top: 40px;
    padding-top: 15px;
    font-size: 0.9rem;
    color: #dcdcdc;
  }

  .footer-bottom span {
    color: #F9A825;
    font-weight: 600;
  }

  /* RESPONSIVE */
  @media (max-width: 850px) {
    .footer-container {
      flex-direction: column;
      text-align: center;
    }

    .footer-right {
      text-align: center;
    }

    .contact-list li {
      justify-content: center;
    }
  }
