/* General Styles */
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  background-color: #f4f4f9;
  color: #333;
}

header {
  text-align: center;
  background-color: #4caf50;
  color: white;
  padding: 1.5rem 0;
}

header h1 {
  margin: 0;
  font-size: 2.5rem;
}

header h2 {
  margin: 0.5rem 0;
  font-size: 1.5rem;
}

header p {
  margin: 0.5rem 0 0;
  font-size: 1.2rem;
}

main {
  margin: 2rem auto;
  max-width: 800px;
  padding: 1rem;
  background: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

/* Section Styles */
section {
  margin-bottom: 2rem;
}

section h2 {
  color: #4caf50;
  font-size: 1.8rem;
  border-bottom: 2px solid #4caf50;
  padding-bottom: 0.5rem;
}

section p,
section ul {
  margin: 1rem 0;
  font-size: 1.1rem;
}

ul {
  list-style-type: disc;
  padding-left: 1.5rem;
}

ul li {
  margin-bottom: 0.5rem;
}

/* Link Styles */
a {
  color: #4caf50;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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