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

/* Body Styles */
body {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  background: #f8f9fa;
  color: #222;
  padding: 20px;
}

/* Headers */
header {
  background: #111;
  color: #fff;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 20px;
  text-align: center;
}

h1 {
  font-size: 2rem;
}

h2 {
  margin-top: 20px;
  font-size: 1.3rem;
  color: #333;
}

/* Links */
a {
  color: #0078d7;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Main Content */
main {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  max-width: 800px;
  margin: auto;
}

/* Lists */
ul {
  margin: 10px 0 10px 20px;
  list-style: disc;
}

/* Footer */
footer {
  margin-top: 30px;
  text-align: center;
  font-size: 0.9rem;
  color: #555;
}
