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

  /* 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;
      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-img-fade {
      width: 100%;
      height: auto;
      display: block;
      opacity: 0;
      animation: fadeIn 1.2s ease forwards;
  }


  .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;
      box-shadow: 0 10px 40px rgba(139, 139, 139, 0.1);
  }

  .sidebar-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #990000;
    border-bottom: 2px solid #990000;
    padding-bottom: 8px;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-item {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.info-icon {
    width: 40px;
    height: 40px;
    background: #990000; /* warna tema merah */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    color: white;
    font-size: 18px;
}

.info-text {
    display: flex;
    flex-direction: column;
}

.info-label {
    font-size: 12px;
    color: #666;
}

.info-value {
    font-size: 15px;
    font-weight: 600;
    color: #333;
}

/* Tombol Daftar */
.info-button {
    display: block;
    text-align: center;
    padding: 10px;
    background: #FBB811;
    color: #990000;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.info-button:hover {
    background: #e1a60f;
}

 


  .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;
  }