* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  /* background-color: #f4f4f4; */
  color: #333;
  line-height: 1.6;
}

.container {
  max-width: 800px;
  margin: 20px auto;
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); */
}

header {
  text-align: center;
  margin-bottom: 20px;
}

header h1 {
  margin-bottom: 10px;
  font-size: 2em;
}

header p {
  font-size: 1.1em;
  color: #777;
}

section {
  margin-bottom: 20px;
}

section h2 {
  margin-bottom: 10px;
  font-size: 1.5em;
  color: #0056b3;
}

section p,
section ul {
  margin-bottom: 10px;
}

ul {
  list-style: disc inside;
  margin-left: 20px;
}

a {
  color: #0056b3;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 600px) {
  .container {
    padding: 10px;
  }

  header h1 {
    font-size: 1.5em;
  }

  section h2 {
    font-size: 1.2em;
  }
}
