  /* Tinggi header */
  #Programs-Header-Container {
      height: 200px;
      margin-top: 100px;
  }

  /* Layer 1: Gradient dasar */
  .header-gradient {
      height: 200px;
      background: linear-gradient(to right, #8B0000, #DC143C);
  }

  /* Layer 2: Background image di kiri */
  .header-bg {
      height: 200px;
      background-image: url('/modules/landing/teams/gradient-bg.png');
      background-repeat: no-repeat;
      background-size: 250px;
      background-position: left;
  }


  .header-content {
      max-width: 1170px;
      margin: 0 auto;
      height: 100%;
      position: relative;
      padding: 0.5rem 1rem;
  }

  .header-content span {
      color: white;
      font-weight: bold;
      font-size: 40px;
      text-transform: uppercase;
      position: absolute;
      bottom: 32px;
  }

  /* Header Section */
  .header-section {
      background: white;
      border-radius: 15px;
      padding: 40px;
      margin-bottom: 30px;
      box-shadow: 0 10px 40px rgba(139, 139, 139, 0.1);
      position: relative;
  }

  .header-section {
      overflow: visible;
  }

  .header-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 5px;
  }

  .header-title {
      display: flex;
      align-items: center;
      margin-bottom: 30px;
      gap: 20px;
  }

  .header-icon {
      width: 64px;
      height: 64px;
      background: linear-gradient(135deg, #FBB811, #f39c12);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 24px;
      box-shadow: 0 5px 20px rgba(251, 184, 17, 0.3);
  }

  .header-icon i {
      position: relative;
      top: 1px;
      /* atau -1px kalau mau naik */
  }


  .header-text {
      font-size: 32px;
      font-weight: 700;
      color: #990000;
      text-transform: uppercase;
      letter-spacing: 1px;
      line-height: 64px;
      margin: 0;
  }


  .content-text {
      line-height: 1.8;
      color: #555;
  }

  .content-text p {
      margin-bottom: 20px;
  }

  .content-text strong {
      color: #990000;
      font-weight: 600;
  }

  /* Sidebar */
  .sidebar {
      background: white;
      border-radius: 15px;
      padding: 25px;
      position: sticky;
      top: 20px;
      height: max-content;
      /* lebih aman daripada fit-content */

      box-shadow: 0 10px 40px rgba(139, 139, 139, 0.1);
  }

  .sidebar-title {
      font-size: 18px;
      font-weight: 700;
      color: #990000;
      margin-bottom: 20px;
      text-transform: uppercase;
  }

  .sidebar-menu {
      list-style: none;
      padding: 0;
      /* Hilangkan padding default ul */
      margin: 0;
  }

  .sidebar-item {
      border-bottom: 1px solid #eee;
      transition: all 0.3s ease;
      width: 100%;

  }

  .sidebar-item:last-child {
      border-bottom: none;
  }

  .sidebar-link {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 15px 10px;
      text-decoration: none;
      color: #555;
      font-weight: 500;
      transition: all 0.3s ease;
      width: 100%;
      /* Biar selebar parent */
      padding: 15px;
      /* Biar kiri-kanan rata */
      box-sizing: border-box;
      /* Padding masuk hitungan lebar */
  }

  .sidebar-link:hover {
      color: #990000;
      background: #f8f9ff;
      border-radius: 8px;
      width: 100%;
  }

  .sidebar-item.active .sidebar-link {
      color: #990000;
      background: linear-gradient(135deg, #667eea, #764ba2);
      color: white;
      border-radius: 8px;
  }

  .sidebar-icon {
      width: 24px;
      height: 24px;
      background: #990000;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 12px;
      transition: all 0.3s ease;
  }

  .sidebar-item:hover .sidebar-icon {
      background: #FBB811;
  }

  .sidebar-item.active .sidebar-icon {
      background: #FBB811;
  }


  .main-layout {
      display: grid;
      grid-template-columns: 1fr 270px;
      gap: 30px;
      align-items: start;
  }

  .main-layout,
  body,
  html {
      overflow: visible;
  }

  @media (max-width: 968px) {
      .main-layout {
          grid-template-columns: 1fr;
      }

      .sidebar {
          order: -1;
          position: static;
      }

      .container {
          padding: 10px;
      }

      .header-section,
      .criteria-section {
          padding: 20px;
      }

      .header-text {
          font-size: 24px;
      }
  }

  /* Animation */
  @keyframes fadeInUp {
      from {
          opacity: 0;
          transform: translateY(30px);
      }

      to {
          opacity: 1;
          transform: translateY(0);
      }
  }

  .fade-in {
      animation: fadeInUp 0.6s ease forwards;
  }

  .fade-in:nth-child(1) {
      animation-delay: 0.1s;
  }

  .fade-in:nth-child(2) {
      animation-delay: 0.2s;
  }

  .fade-in:nth-child(3) {
      animation-delay: 0.3s;
  }

  .program-lainnya .section-header h5 {
      font-size: 1.1rem;
      border-left: 4px solid #dc3545;
      /* warna merah */
      padding-left: 8px;
  }