.section-box-wrapper {
    display: flex;
    gap: 20px;
    flex-wrap: nowrap;
    align-items: flex-start;
    margin: 20px auto;
  }
  
  /* Setiap kotak jadi layout kolom vertikal rapi */
  .section-box {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: #111;
    padding: 10px 20px;
    border-radius: 12px;
    border-left: 6px solid #ff0000;
    position: relative;
    color: #ffffff;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.5);
  }
  
  /* Heading Biar Sejajar Tingginya */
  .section-box h2 {
    color: #ff0000;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 15px;
    text-transform: uppercase;
    border-bottom: 1px solid #ffc7c7;
  
    /* INI YANG MENJAMINKAN SEJAJAR */
    min-height: 40px; 
    display: flex;
    align-items: flex-end;
  }
  
  /* Paragraf tetap rapi sejajar */
  .section-box p {
    font-size: 15px;
    line-height: 1.55;
    margin-bottom: 10px;
    color: #ffffff;
  }
  
  /* List tetap normal */
  .section-box ul {
    margin: 10px 0 0 20px;
    padding: 0;
  }
  
  .section-box ul li {
    margin: 8px 0;
    font-size: 15px;
    color: #ffffff;
  }
  
  @media(max-width: 768px){
    .section-box-wrapper {
      flex-direction: column;
    }
    
    /* Responsive heading agar cocok di layar kecil */
    .section-box h2 {
      min-height: auto;
    }
  }