/* Atur background dan font secara global */
body {
    background-color: #2e6d9d;
    color: white;
    font-family: "Segoe UI", sans-serif;
  }
  

  .ifri-image {
    width: auto ;
    height: 80vh;
    object-fit: cover;
    border-bottom-right-radius: 70% 80%;
  }
  
  
  /* Penyesuaian untuk bagian teks */
  .text-section {
    max-width: 90%;
    margin: auto;
  }
  .text-section h1 {
    font-size: 2.5rem;
    line-height: 1.4;
  }
  
  /* Jika ingin custom button lebih lanjut */
  .btn {
    border-radius: 50px;
    transition: background-color 0.3s, color 0.3s;
  }
  .btn:hover {
    background-color: white;
    color: #2e6d9d;
  }
  .h1{
    font-size: 20px !important;
  }
  
  .accordion-item {
    border-bottom: 1px dashed #aaa;
    padding: 15px 0;
    cursor: pointer;
  }
  
  .accordion-body {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.4s ease;
  }
  
  .accordion-item.active .accordion-body {
    max-height: 300px;
    opacity: 1;
    margin-top: 10px;
  }
  
  .arrow {
    transition: transform 0.3s ease;
  }
  
  .accordion-item.active .arrow {
    transform: rotate(180deg);
  }
  
  #accordion-image {
    transition: opacity 0.4s ease, transform 0.4s ease;
  }

  