    * {
      font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, 'Roboto', sans-serif;
    }
    body {
  background: #fefcf5;
  scroll-behavior: smooth;
  padding-top: 0 !important;  /* Hilangkan padding default */
}
.navbar-fixed-top {
  position: fixed;
  top: 0;
  margin-bottom: 0 !important;  /* Hilangkan margin bottom navbar */
}
    /* navbar custom */
    .navbar-default {
      background: linear-gradient(135deg, #2c5e2f 0%, #1e3a21 100%);
      border-color: #1f2c21;
      border-radius: 0;
      margin-bottom: 0;
    }
    .navbar-default .navbar-brand,
    .navbar-default .navbar-nav > li > a {
      font-weight: 500;
      transition: 0.2s;
      color: #ddd9c9;
    }
    .me{
      height: 20px; margin-right: 10px; display: inline-block; border-radius: 4px; transition: 0.2s;
    }
    .navbar-default .navbar-brand:focus img,
    .navbar-default .navbar-brand:hover img{
      /* border gold */
      border: 2px solid #ffd966;
      transform: scale(1.1);
    }
    .navbar-default .navbar-nav>li>a:focus,
    .navbar-default .navbar-brand:hover,
    .navbar-default .navbar-brand:focus,
    .navbar-default .navbar-nav > li > a:hover,
    .navbar-default .navbar-nav > .active > a {
      color: #ffd966;
      background-color: #1f2c21;
    }
    .navbar-default .navbar-toggle .icon-bar {
      background-color: #f9f1e0;
    }
    /* hero / jumbotron */
    .jumbotron-custom {
      background: linear-gradient(135deg, #2c5e2f 0%, #1e3a21 100%);
      color: white;
      padding: 3rem 2rem;
      margin-bottom: 2rem;
      border-radius: 0 0 30px 30px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.1);
      margin-top: 0 !important;  /* Hilangkan margin top jumbotron */
      padding-top: 70px;  /* Ganti margin dengan padding agar konten tidak ketutupan navbar */
    }
    .profile-img {
      border: 4px solid #ffd966;
      border-radius: 50%;
      width: 160px;
      height: 160px;
      object-fit: cover;
      box-shadow: 0 10px 20px rgba(0,0,0,0.2);
      transition: transform 0.3s ease;
    }
    .profile-img:hover {
      transform: scale(1.02);
    }
    .section-title {
      position: relative;
      display: inline-block;
      margin-bottom: 35px;
      font-weight: 700;
      color: #2c3e2f;
      border-left: 6px solid #e6b422;
      padding-left: 18px;
    }
    .card {
      background: white;
      border-radius: 24px;
      box-shadow: 0 12px 28px rgba(0, 0, 0, 0.05);
      transition: all 0.25s ease;
      height: 100%;
      border: none;
      padding: 20px;
    }
    .card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.12);
    }
    .btn-app {
      background-color: #2c5e2f;
      border: none;
      border-radius: 60px;
      padding: 8px 20px;
      font-weight: 600;
      color: white;
      transition: 0.2s;
    }
    .btn-app:hover {
      background-color: #e6b422;
      color: #1f2c21;
      transform: scale(1.02);
    }
    .donation-method {
      background: #f8f4e8;
      border-radius: 32px;
      padding: 18px;
      transition: 0.1s;
    }
    .method-icon {
      font-size: 32px;
      margin-right: 12px;
      vertical-align: middle;
    }
    .contact-card {
      background: #fff7e8;
      border-radius: 28px;
      padding: 20px;
    }
    footer {
      background-color: #1e2a21;
      color: #ddd9c9;
      padding: 30px 0 20px;
      margin-top: 55px;
    }
    .text-gold {
      color: #ffd966;
    }
    .list-unstyled li {
      margin-bottom: 12px;
    }
    .badge-karya {
      background:#e6b422; padding: 8px 16px; border-radius: 40px; display: inline-block; cursor: pointer;
    }
    hr {
      border-top: 2px dotted #cfd8c5;
    }
    @media (max-width: 768px) {
      .jumbotron-custom {
        text-align: center;
      }
      .profile-img {
        width: 120px;
        height: 120px;
        margin-top: 10px;
      }
      .section-title {
        font-size: 26px;
      }
    }