/* ===== Styling Halaman Footer Notes ===== */
body {
  font-family: "Georgia", "Times New Roman", serif;
  background: #f2ede6;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  color: #333;
}

.notes-container {
  max-width: 800px;
  margin: 40px auto;
  padding: 40px 50px;
  background: #fffdf8;
  border: 1px solid #e6dccf;
  border-radius: 6px;
  position: relative;
  box-shadow: 
    -8px 0 20px -10px rgba(0,0,0,0.2),
    8px 0 20px -10px rgba(0,0,0,0.2),
    0 10px 25px rgba(0,0,0,0.1);
}

/* Efek lipatan buku */
.notes-container::before,
.notes-container::after {
  content: "";
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(0,0,0,0.05), transparent 50%);
  z-index: 0;
}

.notes-container::before {
  left: 0;
  border-radius: 6px 0 0 6px;
}

.notes-container::after {
  right: 0;
  transform: scaleX(-1);
  border-radius: 0 6px 6px 0;
}

h1 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 25px;
  font-weight: bold;
  color: #4a2f16;
  border-bottom: 2px solid #e6dccf;
  padding-bottom: 10px;
}

.notes-content {
  font-size: 1rem;
  position: relative;
  z-index: 1;
}

.notes-content p {
  margin: 15px 0;
}

.notes-content ul {
  padding-left: 20px;
  margin: 15px 0;
}

.notes-content li {
  margin-bottom: 8px;
}

/* Responsive */
@media (max-width: 768px) {
  .notes-container {
    padding: 25px 20px;
    margin: 20px;
  }

  h1 {
    font-size: 1.5rem;
  }
}
