header {
  background-color: #fff;
  border-bottom: 1px solid #ddd;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
}

.header-title {
  font-size: 24px;
  font-weight: bold;
  color: #1e3a8a;
}

/* Hero */
.hero {
  background-size: cover; /* Agar gambar menyesuaikan dengan container */
  color: white;
  padding: 60px 0; /* Menyesuaikan padding agar ukuran hero lebih kecil */
  text-align: center;
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 50vh; /* Menyesuaikan tinggi agar section hero lebih kecil */
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .container {
  background-color: rgba(0, 0, 0, 0.6); /* Transparan gelap */
  padding: 40px;
  border-radius: 12px;
  max-width: 800px;
  color: #fff;
}

.contact-item {
  margin-top: 16px;
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(8, 9, 0, 0.5); /* lapisan gelap semi-transparan */
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero .container .btn {
  margin-top: 24px;
}

.btn {
  background-color: #facc15;
  color: #000; /* ubah ke hitam */
  padding: 10px 24px;
  border-radius: 6px;
  font-weight: bold;
  transition: background-color 0.3s;
  margin-top: 24px;
}

.btn-contact {
  color: #000 !important; /* Warna hitam, pakai !important jika perlu menimpa */
}

.btn:hover {
  background-color: #eab308;
}

/* Hero Section */

.about-hero {
  background-image: url("/img/about.jpg"); /* Ganti sesuai nama file gambar Anda */
  background-size: cover;
  background-position: center;
  height: 60vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.about-hero-overlay {
  background-color: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-hero-content {
  text-align: center;
  max-width: 800px;
  padding: 0 20px;
}

.about-hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.about-hero-content p {
  font-size: 1.2rem;
  font-weight: 300;
  color: #f1f5f9;
}