/* Font definition for BebasKai */
@font-face {
  font-family: "BebasKai";
  src: url("BebasKai.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  background-color: #f8fcf8;
  /* Latar belakang sangat muda */
  color: #333;
}

/* Container utama untuk konten, membuat layout responsif */
.container {
  max-width: 960px;
  margin: 20px auto;
  padding: 20px;
}

/* Bagian Hero (Judul Utama) */
.hero {
  background: linear-gradient(135deg, #2a5a2b, #8bc34a);
  color: white;
  padding: 60px 10px;
  text-align: center;
  border-bottom-left-radius: 20px;
  /* Sudut membulat */
  border-bottom-right-radius: 20px;
  /* Sudut membulat */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.hero h1 {
  font-size: 2.8em;
  /* Ukuran font lebih besar */
  margin-bottom: 10px;
  font-weight: 700;
}

.hero p {
  font-size: 1.2em;
  opacity: 0.9;
}

/* Tombol Call-to-Action (CTA) */
.cta-button-wrapper {
  text-align: center;
  margin: -60px 0;
}

.cta-button {
  display: inline-block;
  padding: 15px 40px;
  font-size: 1.3em;
  font-weight: 600;
  color: white;
  background: linear-gradient(135deg, #2a5a2b, #2a5a2b);
  /* Gradasi lebih gelap untuk tombol */
  border: none;
  border-radius: 10px;
  /* Sudut membulat pada tombol */
  cursor: pointer;
  text-decoration: none;
  /* Hilangkan underline pada link */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  margin-bottom: 70px;
}

.cta-button:hover {
  transform: translateY(-3px);
  /* Efek sedikit naik saat hover */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Bagian Informasi Umum */
.info-section {
  background-color: white;
  padding: 10px;
  margin-bottom: 25px;
  border-radius: 12px;
  /* Sudut membulat pada box informasi */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.info-section h2 {
  font-size: 2em;
  color: #2e7d32;
  /* Hijau Daun Gelap */
  margin-top: 0;
  padding: 19px;
  border-bottom: 2px solid #689f38;
  /* Garis bawah hijau sage */
  margin-bottom: 20px;
}

/* Styling untuk accordion header (h3 atau h2 yang bisa di-klik) */
.accordion-header {
  font-size: 1.5em;
  /* Ukuran font untuk header accordion */
  color: #4caf50;
  /* Hijau Daun */
  /* margin-top: 25px;
            margin-bottom: 15px; */
  cursor: pointer;
  /* Indikasi bahwa bisa di-klik */
  display: flex;
  /* Untuk menempatkan ikon di kanan */
  justify-content: space-between;
  /* Menjaga jarak ikon */
  align-items: center;
  padding: 1px;
  /* Sedikit padding di bawah teks */
  border-bottom: 1px solid #eee;
  /* Garis tipis di bawah header */
  transition: color 0.3s ease;
  font-weight: 900;
}

/* Tambahan styling untuk h2 yang juga menjadi accordion header */
.info-section .accordion-header.h2-style {
  font-size: 1.5em;
  /* Menggunakan ukuran font h2 */
  color: #0c0c0c;
  /* Menggunakan warna h2 */
  margin-top: 0;
  padding-bottom: 10px;
  border-bottom: 2px solid #689f38;
  /* margin-bottom: 20px; */
}

.accordion-header:hover {
  color: #2e7d32;
  /* Warna berubah saat hover */
}

.accordion-header.h2-style:hover {
  color: #4caf50;
  /* Warna berubah saat hover untuk h2 style */
}

/* Styling ikon plus/minus */
.accordion-icon {
  font-size: 0.8em;
  font-weight: bold;
  transition: transform 0.3s ease;
  margin-left: 10px;
  /* Jarak antara teks dan ikon */
}

/* Rotasi ikon saat accordion aktif */
.accordion-header.active .accordion-icon {
  transform: rotate(45deg);
  /* Mengubah '+' menjadi 'x' atau menjadi orientasi minus */
}

/* Konten dropdown (accordion content) */
.accordion-content {
  max-height: 0;
  /* Awalnya tersembunyi */
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
  /* Animasi smooth */
  padding: 0 3px;
  /* Padding horizontal */
  background-color: #fcfdfc;
  /* Latar belakang sedikit berbeda untuk konten */
  border-radius: 8px;
  margin-bottom: 15px;
  /* Margin bawah setelah konten terbuka */
}

/* Ketika accordion header aktif, tampilkan konten */
.accordion-content.show {
  max-height: 20000px;
  /* Cukup besar untuk menampung konten */
  padding: 15px 10px;
  /* Padding vertikal saat terbuka */
}

.info-section ul {
  list-style: none;
  /* Hilangkan bullet default */
  padding: 0;
  margin-bottom: 1em;
  margin-left: 15px;
}

.info-section ul li {
  border-bottom: 1px dotted #e0e0e0;
}

.info-section ul li:last-child {
  border-bottom: none;
}

/* Styling untuk paragraf dalam info-section agar justify */
.info-section p {
  text-align: justify;
  /* Rata kiri dan kanan */
  margin-bottom: 1em;
  /* Tambahkan sedikit margin bawah antar paragraf */
}

.info-section ol {
  /* Styling untuk daftar bernomor */
  margin-left: 30px;
}

.info-section ol li {
  margin-bottom: 8px;
}

/* Menyesuaikan indentasi untuk daftar bertingkat */
.info-section ol ol,
.info-section ul ul {
  margin-left: 20px;
  margin-bottom: 0.5em;
}

.info-section table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1em;
}

.info-section table,
.info-section th,
.info-section td {
  border: 1px solid #ddd;
}

.info-section th,
.info-section td {
  padding: 8px;
  text-align: left;
}

.info-section th {
  background-color: #e8f5e9;
  color: #2e7d32;
}
.info-section p {
  margin-left: 10px;
}
h5 {
  color: #363636;
  font-weight: 700;
  margin-left: 35px;
  font-size: 16px;
}

/* Footer */
footer {
  text-align: center;
  margin-top: 40px;
  padding: 20px;
  color: #777;
  font-size: 0.9em;
  background-color: #e8f5e9;
  /* Hijau Sage Muda */
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.hide-on-mobile {
  display: block;
  /* Default: tampil di PC */
}

.hide-on-pc {
  display: none;
  /* Default: sembunyi di PC */
}

/* Media Query untuk Mobile */
@media (max-width: 768px) {
  .hide-on-mobile {
    display: none !important;
    /* Sembunyikan di layar <= 768px */
  }

  .hide-on-pc {
    display: block !important;
    /* Tampilkan di layar <= 768px */
  }

  .hero img {
    /* Pastikan gambar tetap di tengah di mobile */
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
}
.numbered-section-header {
  font-size: 1.1em;
  font-weight: bold;
  margin-bottom: 5px;
}

.info-section h4 {
  font-size: 1em;
  color: #202020;
  /* Hijau Daun Gelap */
  margin-left: 20px;
  font-weight: 600;
}
