      .scroll-container {
        display: flex;
        overflow-x: auto;
        gap: 20px;
        padding: 20px;
      }

      .scroll-item {
        width: 222px;
        height: 450px;
        display: flex;
        flex-direction: column;
        overflow: hidden;
        border: 1px solid #ccc;
        border-radius: 10px;
        padding: 20px;
        background-color: #f9f9f9;
        box-sizing: border-box;
      }

      .scroll-item img {
        max-width: 100%;
        max-height: 80px;
        object-fit: contain;
        margin-bottom: 10px;
      }
      
      .logo-wrapper {
        text-align: center;
        margin-bottom: 15px;
      }

      .logo-img {
        max-width: 100%;
        max-height: 100px;
        object-fit: contain;
      }

      .scrolling-text {
          width: 100%;
          overflow: hidden;
          background-color: #f1f1f1; /* warna background bisa disesuaikan */
          white-space: nowrap;
          box-sizing: border-box;
      }

      .scrolling-text p {
          display: inline-block;
          padding-left: 100%; /* mulai dari luar layar */
          animation: scroll-text 15s linear infinite;
          font-size: 18px;
          color: #333;
      }

      @keyframes scroll-text {
          0%   { transform: translateX(0); }
          100% { transform: translateX(-100%); }
      }

      .program-container {
        display: flex;
        flex-wrap: wrap;
        margin-top: 50px;
      }

      .sidebar {
        flex: 1;
        min-width: 250px;
        padding: 20px;
        border-right: 1px solid #ddd;
        background-color: #f8f9fa;
      }

      .content {
        flex: 2;
        padding: 20px;
        display: none;
        animation: fadeIn 0.5s;
      }

      .content.active {
        display: block;
      }

      .program-btn {
        display: block;
        width: 100%;
        margin-bottom: 0px;
        text-align: left;
      }

      .content img {
        max-width: 100%;
        border-radius: 8px;
        margin-bottom: 15px;
      }

      @keyframes fadeIn {
        from { opacity: 0; transform: translateY(10px); }
        to { opacity: 1; transform: translateY(0); }
      }
      
      /* Supaya kontainer program di atas background */
      .program-container {
        display: flex;
        flex-direction: row;
        gap: 20px;
        position: relative;
        z-index: 2; /* Penting: di atas background ::before / ::after */
      }

      /* Sidebar tombol */
      .sidebar {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 10px;
        position: relative;
        z-index: 2; /* Penting */
      }

      /* Panel konten */
      .content {
        flex: 3;
        background-color: #fff;
        padding: 20px;
        border-radius: 8px;
        border: 1px solid #ddd;
        position: relative;
        z-index: 2; /* Penting */
      }

      .content img {
        max-width: 300px; /* contoh: maksimal lebar 300px */
        width: 100%;      /* supaya responsif di layar kecil */
        height: auto;     /* proporsional */
        margin-bottom: 15px;
        display: block;
      }

      .content h4 {
        margin-bottom: 1rem;
      }

      #contentPanel img {
        max-width: 300px;
        height: auto;
      }

      .blog {
        position: relative;
        z-index: 1;
      }

      .blog .container {
        position: relative;
        z-index: 2;
        background-color: rgba(255, 255, 255, 0.9); /* Tambahan agar kontennya tetap kontras di atas gambar */
        padding: 30px;
        border-radius: 12px;
        backdrop-filter: blur(4px); /* opsional */
      }

      .blog::before {
        content: "";
        background-image: url('assets/images/background.jpg'); /* ganti sesuai file gambar background-mu */
        background-size: cover;
        background-position: center;
        opacity: 0.4; /* sesuaikan transparansinya */
        position: absolute;
        top: 0; left: 0;
        width: 100%; height: 100%;
        z-index: 0;
      }

        .card-img-top {
          width: 100%;
          aspect-ratio: 16 / 9;
          object-fit: cover;
          object-position: center;
          border-top-left-radius: 0.5rem;
          border-top-right-radius: 0.5rem;
        }

        /* Responsive image */
        .logo-img {
          max-width: 100%;
          height: auto;
          display: block;
          margin: 0 auto;
        }

        /* Carousel item */
        .scroll-item {
          width: 100%; /* buat lebih lebar dari default (bisa disesuaikan) */
          max-width: 600px; /* batasi lebar maksimal agar tidak terlalu besar di layar besar */
          padding: 20px; /* lebih luas dari sebelumnya */
          background-color: #fff;
          border-radius: 12px;
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
          margin: 20px auto; /* berikan space atas-bawah dan center secara horizontal */
        }

        /* Heading style inside carousel */
        .scroll-item h4 {
          font-size: 18px;
          font-weight: bold;
        }

        /* Responsive font on mobile */
        @media (max-width: 767.98px) {
          .program-btn {
            font-size: 0.9rem;
            padding: 6px 10px;
          }

          #contentTitle {
            text-align: center;
            font-size: 1.25rem;
          }

          #contentPanel {
            padding: 1rem;
          }
        }
