	
	 .section {
      padding: 0;
      margin: 0;
    }
    .btn-accent {
      background-color: var(--accent-color);
      color: var(--light-text-color);
      padding: 0.75rem 1.5rem;
      border-radius: 8px;
      font-weight: 600;
      text-decoration: none;
      box-shadow: 0 4px 15px rgba(236, 178, 31, 0.3);
      transition: background 0.3s ease;
      display: inline-block;
    }
    .btn-accent:hover {
      background-color: #d6a012;
    }
	.program-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 2rem 1rem;
    }
    .program-categories {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
      margin: 1.5rem 0;
      justify-content: center;
      position: relative;
      z-index: 10;
    }
    .category-btn {
      background-color: var(--light-background-color);
      border: 2px solid var(--primary-color-2);
      color: var(--primary-color-1);
      padding: 0.5rem 1.25rem;
      border-radius: 30px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      font-size: 0.95rem;
      white-space: nowrap;
    }
    .category-btn.active {
      background-color: var(--primary-color-2);
      color: var(--light-text-color);
    }
    .category-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }
    
    /* ==================== PROGRAMS GRID ==================== */
    .programs-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 320px));
      gap: 2rem;
      justify-content: center; 
    }
    
    /* ==================== PROGRAM CARD ==================== */
    .program {
      background-color: #fff;
      border: 1px solid var(--color-border);
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      display: flex;
      flex-direction: column;
      transition: transform 0.3s, opacity 0.3s, visibility 0.3s;
      opacity: 1;
      visibility: visible;
    }
    .program.hidden {
      opacity: 0;
      visibility: hidden;
      height: 0;
      margin: 0;
      padding: 0;
      border: none;
      overflow: hidden;
    }
    .program:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }
    .program img {
      width: 100%;
      height: 180px;
      object-fit: cover;
    }
    .program-content {
      padding: 1.2rem;
      flex: 1;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
    }
    .program-content p {
      flex-grow: 1;
      margin-bottom: 1rem;
      font-size: 0.95rem;
      color: var(--text-color);
    }
    .program-footer {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      justify-content: flex-start;
      margin-top: auto;
    }
    .program-footer .btn {
      flex: 1 1 auto;
      min-width: 140px;
      text-align: center;
    }
    
    .btn {
      padding: 0.5rem 1rem;
      border-radius: 4px;
      font-size: 0.9rem;
      font-weight: bold;
      text-decoration: none;
      display: inline-block;
      transition: all 0.3s ease;
      box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }
    
    .btn-blue {
      background-color: var(--primary-color-2);
      color: var(--light-text-color);
      border: 2px solid var(--primary-color-2);
    }
    .btn-blue:hover {
      background-color: var(--primary-color-1);
      color: var(--light-text-color);
      transform: translateY(-2px);
      box-shadow: 0 4px 8px rgba(20, 132, 199, 0.3);
    }
        
    .poin {
      list-style: none;
      padding-left: 0;
      margin: 0;
    }
    .poin li {
      margin-bottom: 12px;
      display: flex;
      align-items: flex-start;
      font-size: 14px;
      color: var(--text-color);
    }
    .icon-circle {
      min-width: 16px;
      height: 16px;
      border: 1.5px solid var(--primary-color-2);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 10px;
      color: var(--primary-color-2);
      margin-right: 10px;
      margin-top: 3px;
      flex-shrink: 0;
    }
    
    .contact-btn-container {
      text-align: center;
      margin-top: 3rem;
      padding: 0 1rem;
    }
    
    .program-header {
      position: relative;
      width: 100%;
      min-height: 420px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      text-align: center;
      overflow: hidden;
      padding: 150px 1rem 2rem;
      margin-top: calc(-1 * var(--header-height));
    }
    
    .program-header-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      z-index: 1;
      transition: filter 0.3s ease, opacity 0.3s ease;
      min-width: 100%;
      min-height: 100%;
      transform: scale(1.1); 
    }
    
    .program-header-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, rgba(29, 93, 133, var(--overlay-opacity)) 0%, rgba(20, 132, 199, calc(var(--overlay-opacity) - 0.1)) 100%);
      z-index: 2;
      transition: all 0.3s ease;
    }
    
    .program-header-content {
      position: relative;
      z-index: 3;
      max-width: 800px;
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 0;
      margin-top: 80px;
    }
    
    .program-header-title {
      font-size: 2.5rem;
      color: var(--header-text-color);
      margin-bottom: 1.5rem;
      font-weight: 700;
      position: relative;
      top: 0px;
    }
    
    /* Garis bawah kuning untuk judul header */
    .program-header-title::after {
      content: '';
      position: absolute;
      bottom: -15px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background-color: var(--accent-color);
      border-radius: 2px;
    }
    
    .program-header-subtitle {
      font-size: 1.2rem;
      color: var(--header-subtitle-color);
      max-width: 700px;
      margin: 0 auto 1.5rem;
    }
    
    @media (max-width: 992px) {
      .program-header-title {
        font-size: 2.5rem;
        top: 30px;
        margin-bottom: 1.8rem;
      }
      .program-header-title::after {
        bottom: -18px;
      }
      .program-header-subtitle {
        margin-top: 0.8rem;
      }
    }
    
    @media (max-width: 768px) {
      .program-header {
        min-height: 400px;
        padding: 140px 1rem 1.5rem;
      }
      .program-categories {
        flex-wrap: wrap;
        gap: 0.5rem;
        margin: 1rem 0;
        max-width: 100%;
      }
      .category-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
        flex: 1 1 calc(50% - 0.5rem);
        max-width: calc(50% - 0.5rem);
      }
      .program-header-title {
        font-size: 2.2rem;
        margin-bottom: 2rem;
        top: 20px;
      }
      .program-header-title::after {
        bottom: -15px;
      }
      .program-header-subtitle {
        font-size: 1rem;
        margin-bottom: 0.3rem;
      }
      .program-container {
        padding-top: 1.5rem;
      }
      .contact-btn-container {
        margin-top: 2rem;
      }
      .programs-grid {
        gap: 1.5rem;
      }
      .program img {
        height: 160px;
      }
    }
    
    @media (max-width: 576px) {
      .program-header {
        min-height: 380px;
        padding: 130px 0.5rem 1rem;
      }
      .program-header-title {
        font-size: 2rem;
        margin-bottom: 0.6rem;
        top: 10px;
      }
      .program-header-title::after {
        bottom: -10px;
      }
      .program-header-subtitle {
        font-size: 0.95rem;
        margin-bottom: 0.2rem;
      }
      .program-categories {
        gap: 0.4rem;
        margin: 0.8rem 0;
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: minmax(36px, auto);
      }
      .category-btn {
        padding: 0.35rem 0.7rem;
        font-size: 0.8rem;
        max-width: 100%;
      }
      .programs-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.25rem;
      }
      .program img {
        height: 150px;
      }
      .program-content {
        padding: 1rem;
      }
      .program-footer {
        gap: 0.5rem;
      }
      .btn-blue {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
      }
      .contact-btn-container {
        margin-top: 1.5rem;
        padding: 0 0.5rem;
      }
      .btn-accent {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
        white-space: normal;
        text-align: center;
        line-height: 1.4;
      }
    }
    
    @media (max-width: 400px) {
      .program-header {
        min-height: 360px;
        padding: 120px 0.5rem 0.8rem;
      }
      .program-header-title {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
        top: 0;
      }
      .program-header-title::after {
        bottom: -8px;
      }
      .program-header-subtitle {
        font-size: 0.9rem;
        margin-bottom: 0.1rem;
      }
      .program-categories {
        gap: 0.3rem;
        margin: 0.5rem 0;
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: minmax(32px, auto);
      }
      .category-btn {
        padding: 0.3rem 0.6rem;
        font-size: 0.75rem;
        max-width: 100%;
      }
      .program-container {
        padding: 1rem 0.5rem;
      }
      .programs-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
      }
      .program img {
        height: 140px;
      }
      .program-content {
        padding: 0.75rem;
      }
      .contact-btn-container {
        margin-top: 1rem;
        padding: 0 0.5rem;
      }
      .btn-accent {
        padding: 0.5rem 0.8rem;
        font-size: 0.85rem;
        white-space: normal;
        text-align: center;
        line-height: 1.3;
        max-width: 100%;
      }
    }