  body {
    font-family: "Inter", sans-serif;
    background: #f6f9f7;
    color: #344e41;
  }

  /* HERO */
  .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;

    background:
      linear-gradient(rgba(246, 249, 247, 0.88), rgba(202, 210, 197, 0.85)),
      url("https://media2.4life.com/images/banners/bg_Indonesia_together_building_people_20260312134051.webp?width=1920&mode=crop&quality=80");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  .hero-profile {
    width: 85%;
    border-radius: 20px;
  }

  .hero-title {
    font-size: 2.8rem;
    font-weight: 600;
  }

  .highlight {
    color: #52796f;
  }

  /* BUTTON */
  .btn-natural {
    background: #84a98c;
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    border: none;
  }

  .btn-natural:hover {
    background: #52796f;
  }

  /* SECTION */
  .section {
    padding: 100px 0;
  }

  .soft-bg {
    background: #edf2f4;
  }

  /* CARD */
  .testimonial-card {
    background: white;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  }

  .testi-img {
    width: 70px;
    border-radius: 50%;
    margin-bottom: 10px;
  }

  .quote {
    font-style: italic;
    margin-bottom: 10px;
  }

  .result {
    font-size: 0.9rem;
    color: #52796f;
    font-weight: 500;
  }

  .contact-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  }

  /* PROFILE */
  .profile-img {
    width: 80%;
    border-radius: 20px;
  }

  .wa-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25d366;
    color: white;
    padding: 15px;
    border-radius: 50%;
  }

  .social-icon img {
      transition: 0.3s;
      filter: grayscale(10%);
  }

  .social-icon:hover img {
      transform: translateY(-3px) scale(1.1);
      filter: none;
  }

  .cta-box {
      background: #E6F4EA;
      padding: 40px;
      border-radius: 20px;
  }

  .section.soft-bg {
      background: #f8fafc;
  }

  .section-title {
      font-weight: 600;
  }

  .btn-success {
      font-weight: 500;
  }