/* Reset sederhana */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}

.container {
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px 0;
}

/* Header / Hero */
.hero {
  background: #0066cc;
  color: #fff;
  padding: 60px 0;
  text-align: center;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.2rem;
}

/* Sections */
section {
  margin-top: 40px;
}

section h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  border-bottom: 2px solid #0066cc;
  display: inline-block;
  padding-bottom: 4px;
}

section ul {
  list-style: disc inside;
  margin-top: 10px;
}

section ul li {
  margin-bottom: 5px;
}

/* Footer */
.footer {
  background: #f0f0f0;
  text-align: center;
  padding: 20px 0;
  margin-top: 60px;
  color: #666;
}
