/* Global */
body {
  margin: 0;
  font-family: "Segoe UI", sans-serif;
  background-color: #cfe1e9; /* pilih salah satu warna */
  color: #333; /* warna teks */
}

/* Header */
header {
  background-color: #1d2656;
  color: white;
  padding: 20px 50px;
}

.header-text h1 {
  margin: 0;
  font-size: 1.8rem;
}

.header-text p {
  margin: 4px 0 0;
  font-size: 1rem;
}

.sejarah-section {
  max-width: 900px;
  margin: 50px auto;
  padding: 30px;
  background: #f9f9f9;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  font-family: "Segoe UI", sans-serif;
  color: #333;
}

.sejarah-section h2 {
  color: #e7ac07;
  text-align: center;
  margin-bottom: 25px;
}

.sejarah-section p,
.sejarah-section ol {
  font-size: 1.1em;
  line-height: 1.8em;
  text-align: justify;
  margin-bottom: 20px;
}

.sejarah-section ol {
  margin-left: 20px;
}

.hero img {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  border-radius: 0 0 10px 10px;
}

.sejarah-box {
  background: #e9f1f6;
  padding: 20px;
  margin-bottom: 20px;
  border-left: 6px solid #003366;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.sejarah-box:hover {
  transform: translateY(-5px);
}

.sejarah-box h3 {
  color: #003366;
  margin-bottom: 10px;
}
