/* Reset some default styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f7f9fb;
  color: #333;
  line-height: 1.6;
  padding: 20px;
}

.container {
  max-width: 800px;
  margin: auto;
  background: white;
  padding: 30px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  border-radius: 8px;
}

header h1 {
  margin-bottom: 10px;
  font-size: 2rem;
  color: #ffb300;
}

header p {
  font-size: 0.9rem;
  color: #666;
}

section {
  margin-top: 30px;
}

section h2 {
  color: #ffb300;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

section p,
section ul {
  font-size: 1rem;
}

section ul {
  padding-left: 20px;
  list-style-type: disc;
}

a {
  color: #0066cc;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

footer {
  margin-top: 40px;
  text-align: center;
  font-size: 0.9rem;
  color: #777;
}
