    :root {
      --crf: #0056b3;      /* Biru PMII Utama */
      --crf2: #004085;     /* Biru Tua PMII */
      --yellow-pmii: #ffc107; /* Kuning Pergerakan */
      --border: #e9ecef;
    }

    body, h1, h2, h3, h4, h5, h6, .page-title, .title {
      font-family: 'Nunito', 'Poppins', sans-serif !important;
    }

    .main-wrapper-content {
      padding-top: 0;
    }

    .btn-primary {
      background: var(--crf) !important;
      border-color: var(--crf) !important;
      transition: .3s;
    }

    .btn-primary:hover {
      background: var(--crf2) !important;
      border-color: var(--crf2) !important;
    }

    /* SLIDER BANNER HERO */
    .hero-slider-box {
      width: 100%;
      overflow: hidden;
      position: relative;
      border-radius: 12px;
    }
    .hero-slide-img {
      width: 100%;
      height: auto;
      object-fit: cover;
      display: block;
      max-height: 520px;
    }

    /* SEKSI PRODUK / LAYANAN */
    .services .icon-box {
      padding: 30px 20px;
      position: relative;
      overflow: hidden;
      background: #ffffff;
      box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.05);
      transition: all 0.3s ease-in-out;
      border-radius: 16px;
      border: 1px solid var(--border);
      width: 100%;
    }
    .services .icon-box:hover {
      transform: translateY(-5px);
      box-shadow: 0px 15px 35px rgba(0, 86, 179, 0.18);
      border-color: rgba(0, 86, 179, 0.4);
    }
    .services .icon i {
      font-size: 3rem;
      color: var(--crf);
      transition: transform 0.3s ease;
    }
    .services .icon-box:hover .icon i {
      transform: scale(1.1);
    }
    .services .title a {
      color: #1e293b;
      font-weight: 700;
      font-size: 1.15rem;
      text-decoration: none;
      transition: 0.3s;
    }
    .services .title a:hover {
      color: var(--crf);
    }

    /* KARTU KEUNGGULAN */
    .why-donate-box {
      border: 1px solid var(--border);
      border-radius: 16px;
      background: #ffffff;
      padding: 2.5rem 2rem;
      transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
      position: relative;
      overflow: hidden;
    }

    .why-donate-box::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 4px;
      background: var(--crf);
      transform: scaleX(0);
      transition: transform 0.4s ease;
      transform-origin: left;
    }

    .why-donate-box:hover {
      transform: translateY(-8px);
      box-shadow: 0 15px 35px rgba(0, 86, 179, 0.15);
      border-color: rgba(0, 86, 179, 0.3);
    }

    .why-donate-box:hover::before {
      transform: scaleX(1);
    }

    .icon-wrapper {
      width: 70px; height: 70px;
      background-color: rgba(0, 86, 179, 0.12);
      color: var(--crf);
      font-size: 2rem;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      margin-bottom: 1.5rem;
      transition: all 0.4s ease;
    }

    .why-donate-box:hover .icon-wrapper {
      background-color: var(--crf);
      color: #ffffff;
      transform: rotate(12deg) scale(1.05);
    }

    /* KARTU ARTIKEL TERBARU */
    .latest-posts .post-img {
      position: relative !important;
      height: 220px;
      overflow: hidden;
      border-radius: 10px;
      background-color: #f8fafc;
    }
    .latest-posts .post-img img {
      width: 100%; height: 100%;
      object-fit: cover;
      transition: .4s;
    }
    .latest-posts article:hover .post-img img {
      transform: scale(1.05);
    }
    .post-category {
      color: var(--crf);
      font-weight: 600;
      font-size: 13px;
      margin-top: 15px;
    }
    .title a {
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      text-overflow: ellipsis;
      line-height: 1.4;
      max-height: 2.8em;
      color: #1e293b;
      font-size: 1.1rem;
      font-weight: 700;
      transition: .3s;
      text-decoration: none;
    }
    .title a:hover {
      color: var(--crf) !important;
    }

    /* FAQ ACCORDION STYLES */
    .faq-item {
      background: #fff;
      border-radius: 12px;
      padding: 20px;
      margin-bottom: 15px;
      border: 1px solid var(--border);
      box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    }
    .faq-item h3 {
      font-size: 1.1rem;
      font-weight: 700;
      color: #1e293b;
      margin-bottom: 10px;
    }

    /* PENGURUS STYLING */
    .pengurus-img-wrapper {
      position: relative;
      width: 160px;
      height: 160px;
      margin: 0 auto 12px;
    }
    .pengurus-img {
      position: relative;
      z-index: 2;
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 50%;
      border: 3px solid var(--crf);
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }
    
    /* Hero Section */
    .hero {
      width: 100%;
      min-height: 70vh;
      position: relative;
      padding: 120px 0 120px 0;
      display: flex;
      align-items: center;
    }

    .hero .hero-bg {
      position: absolute;
      inset: 0;
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
    }

    .hero:before {
      content: "";
      background: color-mix(in srgb, var(--background-color), transparent 10%);
      position: absolute;
      inset: 0;
      z-index: 2;
    }

    .hero .container {
      position: relative;
      z-index: 3;
    }

    .hero h1 {
      margin: 0 0 20px 0;
      font-size: 48px;
      font-weight: 700;
      line-height: 56px;
      color: color-mix(in srgb, var(--heading-color), transparent 30%);
    }

    .hero h1 span {
      color: var(--heading-color);
      border-bottom: 4px solid #ffffff;
    }

    .hero p {
      color: color-mix(in srgb, var(--default-color), transparent 30%);
      margin: 5px 0 30px 0;
      font-size: 22px;
      font-weight: 400;
    }

    .hero .btn-get-started {
      color: var(--contrast-color);
      background: var(--accent-color);
      font-family: var(--heading-font);
      font-weight: 400;
      font-size: 15px;
      letter-spacing: 1px;
      display: inline-block;
      padding: 10px 28px 12px 28px;
      border-radius: 50px;
      transition: 0.5s;
      box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
    }

    .hero .btn-get-started:hover {
      color: var(--contrast-color);
      background: color-mix(in srgb, var(--accent-color), transparent 15%);
      box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
    }

    .hero .btn-watch-video {
      font-size: 16px;
      transition: 0.5s;
      margin-left: 25px;
      color: var(--default-color);
      font-weight: 600;
    }

    .hero .btn-watch-video i {
      color: var(--accent-color);
      font-size: 32px;
      transition: 0.3s;
      line-height: 0;
      margin-right: 8px;
    }

    .hero .btn-watch-video:hover {
      color: var(--accent-color);
    }

    .hero .btn-watch-video:hover i {
      color: color-mix(in srgb, var(--accent-color), transparent 15%);
    }

    .hero .animated {
      animation: up-down 2s ease-in-out infinite alternate-reverse both;
    }

    @media (max-width: 640px) {
      .hero h1 {
        font-size: 28px;
        line-height: 36px;
      }

      .hero p {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 30px;
      }

      .hero .btn-get-started,
      .hero .btn-watch-video {
        font-size: 13px;
      }
    }

    .hero .hero-waves {
      display: block;
      width: 100%;
      height: 60px;
      position: absolute;
      left: 0;
      bottom: 0;
      right: 0;
      z-index: 3;
    }

    .hero .wave1 use {
      animation: move-forever1 10s linear infinite;
      animation-delay: -2s;
      fill: var(--default-color);
      opacity: 0.6;
    }

    .hero .wave2 use {
      animation: move-forever2 8s linear infinite;
      animation-delay: -2s;
      fill: var(--default-color);
      opacity: 0.4;
    }

    .hero .wave3 use {
      animation: move-forever3 6s linear infinite;
      animation-delay: -2s;
      fill: var(--default-color);
    }

    @keyframes move-forever1 {
      0% { transform: translate(85px, 0%); }
      100% { transform: translate(-90px, 0%); }
    }

    @keyframes move-forever2 {
      0% { transform: translate(-90px, 0%); }
      100% { transform: translate(85px, 0%); }
    }

    @keyframes move-forever3 {
      0% { transform: translate(-90px, 0%); }
      100% { transform: translate(85px, 0%); }
    }

    @keyframes up-down {
      0% { transform: translateY(10px); }
      100% { transform: translateY(-10px); }
    }

    .dark-background {
        --background-color: #0b72d7;
        --default-color: #ffffff;
        --heading-color: #ffffff;
        --surface-color: #0c0091;
        --contrast-color: #ffffff;
    }

    /* CUSTOM HOVER UNTUK CTA PMII */
    .btn-cta-pmii:hover {
      background-color: #e0a800 !important;
      transform: translateY(-3px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2) !important;
    }