body {
  font-family: "Segoe UI", sans-serif;
  margin: 0;
  padding: 0;
  background-color: #fff;
  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;
}

.description {
  max-width: 800px;
  margin: 30px auto;
  text-align: center;
  padding: 0 20px;
  font-size: 16px;
  line-height: 1.6;
}

.grid-komisi {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  padding: 40px 20px;
  max-width: 1100px;
  margin: auto;
}

.komisi-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  background-color: white;
  transition: transform 0.2s;
}

.komisi-card:hover {
  transform: scale(1.02);
}

.komisi-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.komisi-card h3 {
  padding: 15px;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
}

footer {
  background-color: #15091A;
  color: white;
  text-align: center;
  padding: 20px;
  font-size: 14px;
  margin-top: 40px;
}

@media (max-width: 600px) {
  .banner {
    font-size: 28px;
    padding: 60px 20px;
  }
}
