body {
    background-color: #ffffff;
    color: black;
    margin: 0;
    padding: 0;
  }
  
  .container,
  .accordion,
  .accordion-item,
  .accordion-body {
    background: transparent;
    box-shadow: none;
    border: none;
  }
  
  .accordion-item {
    border-bottom: 1px dashed #aaa;
    padding: 15px 0;
    cursor: pointer;
    padding: 0;
  }
  .accordion-header {
    padding: 15px 0;
  }

  .accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, transform 0.4s ease;
    transform: translateY(-10px);
    margin: 0; /* Tidak ada margin agar border nempel */
    padding: 0 0 0 0; /* Padding biar tidak ngedorong border saat ditutup */
  }
  
  .accordion-item.active .accordion-body {
    max-height: 300px; /* Atau pakai JS scrollHeight */
    transform: translateY(0);
    padding-top: 10px; /* Spasi antara judul dan konten SAAT AKTIF */
  }
  
  
  
  
  .arrow {
    transition: transform 0.3s ease;
  }
  
  .accordion-item.active .arrow {
    transform: rotate(180deg);
  }
  
  #accordion-image {
    transition: transform 0.4s ease;
  }
 .judul{
    font-weight: 700;
    font-size: 50px;
    margin-top: 20px;
    padding-bottom: 20px;
 }
 .fw-semibold{
    font-weight: 600 !important;
    color: #2e6d9d !important;
 }
 .h1-aboutklik{
  font-size: 12px !important;
 }
 