body {
  margin: 0;
  font-family: Arial, sans-serif;
}

/* Styling navbar */
.navbar {
  background-color: #fff;
  color: black;
  padding: 17px 2%;
  font-family: 'Poppins', sans-serif; /* font baru */
  display: flex;
  align-items: center;
}

.nav-container {
  display: flex;
  align-items: center;
}

.back-arrow {
  display: flex;
  align-items: center;
  margin-right: 1px;
  text-decoration: none;
  cursor: pointer;
}

.back-arrow svg {
  fill: black; /* ubah warna panah di sini */
  transition: transform 0.2s ease, fill 0.2s ease;
}

.back-arrow:hover svg {
  transform: translateX(-3px); /* efek sedikit geser ke kiri pas hover */
  opacity: 0.9;
}

.nav-title {
  font-weight: 800;
  font-size: 15px;
}

.gambar-penuh {
  position: relative;
  height: 35vh; /* tetap setengah layar */
  overflow: hidden; /* supaya gambar latar tidak meluber */
}

.gambar-penuh img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Container logo + teks */
.logo-container {
  position: absolute;
  top: 55%; /* dari 50% → 55% biar agak turun */
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* LOGO kotak sebenarnya */
.logo {
  width: 100px !important;     /* paksa ukuran jadi 60px */
  height: 100px !important;    /* pastikan tinggi sama (kotak) */
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  display: block;
  margin: 0 auto;
}

/* Teks di bawah logo */
.judul {
  margin-top: 15px;
  font-size: 23px;
  font-weight: 600;
  color: white;
  text-shadow: 0 2px 5px rgba(0,0,0,0.5);
  font-family: 'Poppins', sans-serif; /* font baru */
  letter-spacing: 1px; /* sedikit jarak antar huruf */
}

/* Supaya posisi relatif ke gambar */
.gambar-penuh {
  position: relative;
}

.konten {
  padding: 25px 6%;      /* makin kecil: dari 10% → 6% */
  background-color: #fff;
  color: #333;
  font-family: 'Poppins', sans-serif;
  line-height: 1.7;
  font-size: 13px;
}

.konten p {
  margin-bottom: 18px;
  text-align: left;
}

.keunggulan {
  padding: 5px 6%;
  background-color: #f4f4f4;
  color: #333;
  font-family: 'Poppins', sans-serif;
}

.keunggulan h2 {
  text-align: center;
  font-family: 'Nunito', sans-serif;
  font-size: 23px;
  font-weight: 800;
  color: #0077cc;
  margin-bottom: 20px;
}

.keunggulan-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.checkmark {
  color: #0077cc;         /* warna biru */
  font-size: 18px;
  margin-right: 10px;
  line-height: 1.5;
}

.keunggulan-item p {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: #444;
}

.kontak {
  background-color: #f5f9ff;
  padding: 10px 6%;
  text-align: center;
  font-family: 'Nunito', sans-serif;
}

.kontak h2 {
  font-size: 23px;
  font-weight: 800;
  color: #0077cc;
  margin-bottom: 30px;
}

.kontak-list {
  list-style: none;
  padding: 0;
  max-width: 500px;
  margin: 0 auto;
  text-align: left;
}

.kontak-list li {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
}

.kontak-list img {
  width: 24px;
  height: 24px;
  margin-right: 10px;
  filter: invert(34%) sepia(87%) saturate(2908%) hue-rotate(187deg) brightness(97%) contrast(101%);
}

.kontak-list a {
  color: #0077cc;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: color 0.2s ease;
}

.kontak-list a:hover {
  color: #005fa3;
  text-decoration: underline;
}
