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 Section */
.about-hero {
  background-image: url("/img/banner-300.jpg"); /* Pastikan path ini sesuai */
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  height: 100vh; /* Gunakan 100% tinggi layar */
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  overflow: hidden;
}

.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;
}

@media (max-width: 768px) {
  .about-hero {
    height: 50vh; /* Kurangi tinggi di layar kecil */
    background-position: center;
  }

  .about-hero-content h1 {
    font-size: 2rem; /* Ukuran judul lebih kecil */
    margin-bottom: 10px;
  }

  .about-hero-content p {
    font-size: 1rem; /* Ukuran paragraf lebih kecil */
  }
}

@media (max-width: 480px) {
  .about-hero {
    height: 40vh; /* Lebih pendek di layar HP kecil */
    padding: 20px;
  }

  .about-hero-content {
    padding: 0 10px;
  }

  .about-hero-content h1 {
    font-size: 1.6rem;
  }

  .about-hero-content p {
    font-size: 0.95rem;
  }
}

/* Cta Section */
.cta-full {
  width: 100%;
  background-color: #ffb400;
  padding: 40px 20px;
  text-align: center;
  margin: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.cta-full h2 {
  font-size: 28px;
  font-weight: bold;
  color: #000;
  margin-bottom: 20px;
}

.cta-full-button {
  display: inline-block;
  padding: 12px 28px;
  font-size: 18px;
  color: #000;
  border: 2px solid #000;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.cta-full-button:hover {
  background-color: #000;
  color: #fff;
}
