/* ===============================
   RESET DASAR
   =============================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Arial, sans-serif;
}

body {
  background: #f6f9fe;
  color: #333;
  line-height: 1.8;
}

/* ===============================
   AREA KONTEN
   =============================== */
.content {
  max-width: 1000px;
  margin: 90px auto 60px;
  padding: 0 25px;
}

/* ===============================
   BLOK JUDUL UTAMA (BERWARNA)
   =============================== */
.content > h2 {
  background: linear-gradient(135deg, #0a4d8c, #1366b8);
  color: #ffffff;
  text-align: center;
  font-size: 12px;
  padding: 28px 20px;
  margin-bottom: 50px;
  border-radius: 10px;
  letter-spacing: 0.5px;
}

/* ===============================
   JUDUL JENIS SOFTWARE (RATA KIRI)
   =============================== */
.content h1 {
  font-size: 26px;
  color: #000000;
  margin: 45px 0 12px;
  text-align: left;
  position: relative;
  padding-left: 14px;
}

/* Garis penegas kiri judul */
.content h1::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 70%;
  background: #0a4d8c;
  border-radius: 3px;
}

/* ===============================
   PARAGRAF PENJELASAN
   =============================== */
.content p {
  margin-bottom: 18px;
  text-align: justify;
}

/* ===============================
   LIST SOFTWARE
   =============================== */
.content ul {
  margin: 15px 0 30px 30px;
}

.content ul li {
  margin-bottom: 10px;
}

/* ===============================
   GAMBAR SCROLL
   =============================== */
.scroll-img {
  max-height: 300px;
  overflow-y: auto;
  border: 2px solid #0a4d8c;
  border-radius: 6px;
  margin: 40px 0;
}

.scroll-img img {
  width: 100%;
  display: block;
}

/* ===============================
   NAVIGASI TOMBOL
   =============================== */
.page-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 55px;
  gap: 15px;
  flex-wrap: wrap;
}

/* Tombol kembali */
.btn-back {
  background: #ffffff;
  color: #0a4d8c;
  border: 2px solid #0a4d8c;
  padding: 10px 26px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.btn-back:hover {
  background: #0a4d8c;
  color: #ffffff;
  transform: translateX(-4px);
}

/* Tombol lanjut */
.btn-next {
  background: #0a4d8c;
  color: #ffffff;
  padding: 10px 26px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.btn-next:hover {
  background: #083a69;
  transform: translateX(4px);
}

/* ===============================
   RESPONSIVE
   =============================== */
@media (max-width: 600px) {
  .content {
    margin-top: 70px;
  }

  .content > h2 {
    font-size: 28px;
    padding: 22px 15px;
  }

  .content h1 {
    font-size: 22px;
  }

  .page-nav {
    justify-content: center;
  }
}
/* ===============================
   RESET DASAR
   =============================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Arial, sans-serif;
}

body {
  background: #f4f7fb;
  color: #333;
  line-height: 1.8;
}

/* ===============================
   NAVIGASI
   =============================== */
nav {
  background: linear-gradient(135deg, #0a4d8c, #1366b8);
  padding: 14px 30px;
  display: flex;
  gap: 22px;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
}

nav a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  position: relative;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #ffffff;
  transition: width 0.3s ease;
}

nav a:hover::after {
  width: 100%;
}

/* ===============================
   AREA KONTEN
   =============================== */
.content {
  max-width: 1000px;
  margin: 90px auto 70px;
  padding: 0 25px;
}

/* ===============================
   JUDUL UTAMA
   =============================== */
.content h2 {
  background: linear-gradient(135deg, #0a4d8c, #1366b8);
  color: #ffffff;
  text-align: center;
  font-size: 34px;
  padding: 30px 20px;
  margin-bottom: 50px;
  border-radius: 10px;
}

/* ===============================
   SUB JUDUL SOFTWARE
   =============================== */
.content h1 {
  font-size: 26px;
  color: #083a69;
  margin: 45px 0 14px;
  padding-left: 18px;
  position: relative;
}

.content h1::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 6px;
  height: 75%;
  background: #0a4d8c;
  border-radius: 4px;
}

/* ===============================
   PARAGRAF
   =============================== */
.content p {
  margin-bottom: 18px;
  text-align: justify;
}

/* ===============================
   LIST SOFTWARE
   =============================== */
.content ul {
  margin-left: 35px;
}

.content ul li {
  margin-bottom: 10px;
}

/* ===============================
   GAMBAR SCROLL
   =============================== */
.scroll-img {
  max-height: 340px;
  overflow-y: auto;
  border: 2px solid #0a4d8c;
  border-radius: 6px;
  margin: 40px 0;
}

.scroll-img img {
  width: 100%;
  display: block;
}

/* ===============================
   NAVIGASI HALAMAN
   =============================== */
.page-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 55px;
}

/* Tombol kembali */
.btn-back {
  background: #ffffff;
  color: #0a4d8c;
  border: 2px solid #0a4d8c;
  padding: 10px 26px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.btn-back:hover {
  background: #0a4d8c;
  color: #ffffff;
  transform: translateX(-4px);
}

/* Tombol lanjut */
.btn-next {
  background: linear-gradient(135deg, #0a4d8c, #1366b8);
  color: #ffffff;
  padding: 11px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.btn-next:hover {
  transform: translateX(4px);
  box-shadow: 0 6px 16px rgba(10, 77, 140, 0.3);
}

/* ===============================
   RESPONSIVE
   =============================== */
@media (max-width: 600px) {
  nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
  }

  .content h2 {
    font-size: 28px;
    padding: 22px 15px;
  }

  .content h1 {
    font-size: 22px;
  }
}
