 html, body {
      height: 100%;
      margin: 0;
      padding: 0;
      font-family: 'arial','Courier New', Courier, monospace;
      display: flex;
      flex-direction: column;
      min-height: 100vh;
    }

    /* pastikan body posisi relative agar pseudo element tampil */
    body {
      position: relative;
      background-color: #ffffff;
    }

    /* gambar dekoratif di samping (tidak mengganggu interaksi) */
    body::before,
    body::after {
      content: "";
      position: fixed;
      top: 0;
      bottom: 0;
      width: 150px;              /* ubah lebar sesuai gambar */
      background-repeat: no-repeat;
      background-position: center top;
      background-size: cover;
      pointer-events: none;      /* biar tidak menangkap klik */
      z-index: 0;                /* di bawah konten utama */
    }
    /* body::before { left: 0;  background-image: url('img/dummybgcover1.jpg'); }
    body::after  { right: 0; background-image: url('img/dummybgcover1.jpg'); } */

    /* pastikan semua konten berada di atas gambar */
    .site {
      position: relative;
      z-index: 1;
      display: flex;
      flex-direction: column;
      min-height: 100vh;
    }

    /* sembunyikan dekorasi samping pada layar kecil / phone */
    @media (max-width: 600px) {
      #gambar_atas { display: block  !important; }

      #gambar_atas div {
        width: 100% !important;
      }

      #tentang-div{
        display: block !important;
      }

      #tentang-div div {
        width: 100% !important;
      }

      .badge-icon {
        display: none !important;
      }
  
    }

    /* === HEADER dengan background === */
    header {
      position: relative;
      color: rgb(0, 0, 0);
      padding: 15px 20px;
      background: white;
      overflow: hidden;
      min-height:40px;
      display:flex;
      z-index:1;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);

    }

    /* Overlay gelap agar teks terbaca */
    header::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgb(255, 255, 255);
      z-index: 0;
    }

    header h1, header p {
      position: relative;
      top: 50%;
      left : 100px;
      z-index: 1;
      margin: 0;
      padding: 0 12px;
      font-size: clamp(1rem, 2.8vw, 2.2rem);
      line-height: 0.1;
    }

    /* Logo kiri dan kanan atas */
    .logo-kiri {
      position: absolute;
      top: 50%;
      left: 20px;
      transform: translateY(-50%);
      height: clamp(40px, 6vw, 70px);
      width: auto;
      border-radius: 10px;
      z-index: 2;
    }

    .logo-kiriMid {
      position: absolute;
      top: 50%;
      left: 13%;
      transform: translateY(-50%);
      height: clamp(40px, 6vw, 70px);
      width: auto;
      border-radius: 10px;
      z-index: 2;
    }

    .logo-kanan {
      position: absolute;
      top: 50%;
      right: 20px;
      transform: translateY(-50%);
      height: clamp(40px, 6vw, 70px);
      width: auto;
      border-radius: 10px;
      z-index: 2;
    }

    .banner-judul{
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 1;
      width: 100%;
    }

    .banner-judul img {
      width: 100%;
      height: auto;
    }


  /* ISI */
    section {
      position: relative;
      max-width: 1000px;
      margin: 1px auto;
      padding: 0 20px;
      padding: 1px 20px;
    }

    section #tentang {
      background-color: #a10f0fcc;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      padding: 25px 20px;
    }

    .content-main {
      position:relative;
      z-index:1;
    }

    .content-main h2 {
      color: #306d07;
      margin-bottom: 15px;
      text-align: center;
    }

    .content-main p {
      text-align: justify;
      margin-bottom: 15px;
    }

 

    /* Navigasi */
    .nav-panel {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      padding: 30px;
      background-color: #ffffff00;
      margin-top:8px;
    }

    .nav-card {
      width: 180px;
      background-color: #f4f4f4;
      border-radius: 15px;
      box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
      overflow: hidden;
      text-align: center;
      text-decoration: none;
      color: #306d07; 
      transition: transform 0.3s, box-shadow 0.3s;
    }

    .nav-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 15px rgba(0, 0, 0, 0.25);
    }

    .nav-card img {
      width: 50%;
      height: 120px;
      object-fit: scale-down;
    }

    .nav-card h3 {
      margin: 10px 0;
      font-size: 18px;
    }

    /* Footer */

    footer {
      margin-top: auto; /* push footer to bottom of .site flex container */
      background-color: #3b3b3b;
      color: white;
      text-align: center;
      padding: 10px 12px;
      min-height:80px;
      display:flex;
      flex-direction:column;
      align-items:center;
      justify-content:center;
      gap:3px;
      line-height:0.2;
      white-space:normal;
      z-index:1000;
  }       
  
  
  .content {
    align-items: center;
    background-color: rgb(255, 255, 255);
    padding: 15px;
    transition: background-color 0.3s, transform 0.3s;
    text-align: center;
    box-shadow: #3b3b3b4f 0px 3px 8px;
    width: 250px;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .content h1 {
    margin-bottom: 5px;
    color: #306d07;
  }

  .content p {
    margin-top: 0;
    color : #000
  }

  .content:hover {
    background-color: #e9e9e9;
    transform: translateY(-5px);
    cursor: pointer;
  }

  .content-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;

  }

  .text-block {
    width: 100%;
    margin: 0 auto;
  }

  .Logo.Partnership {
       position: relative;
      display: flex;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      border-radius: 10px;
      z-index: 2;
    }

  .badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #ffffff;
    border-radius: 20px;
    padding: 8px 14px;
    margin: 8px 0;
    font-family: Arial, sans-serif;
    font-size: 14px;
    color: #374151;
  }

  .badge-icon {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: #22c55e;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
  }