body {
  font-family: "Inter", sans-serif;
  margin: 0;
  padding: 0;
  background-color: #fdfdfd;
  color: #333;
}

.hero {
  background-image: url("images/sejarahhero.png");
  background-size: cover;
  background-position: center;
  position: relative;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(21, 9, 26, 0.8);
  z-index: 0;
}

.hero h1 {
  position: relative;
  font-size: 3rem;
  font-weight: 800;
  z-index: 1;
  text-align: center;
}

.content {
  max-width: 960px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.struktur-img {
  display: block;
  max-width: 100%;
  height: auto;
  border: 1px solid #ddd;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  margin: 0 auto 2rem auto;
}

.description {
  text-align: justify;
  font-size: 16px;
  line-height: 1.6;
  color: #555;
}

footer {
  text-align: center;
  padding: 1rem;
  background-color: #15091A;
  font-size: 0.875rem;
  color: white;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .hero {
    height: 220px;
  }

  .hero h1 {
    font-size: 2rem;
    padding: 0 1rem;
  }

  .description {
    font-size: 14px;
  }
}
