body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 20px;
  line-height: 1.6;
}

h1, h2 {
  color: navy;
}

section {
  margin-bottom: 20px;
}

h3 {
  color: darkred;
}

ul {
  list-style: none; /* Removes bullet points */
}

ul li::before {
  content: "✓ "; /* Adds a custom bullet point */
  color: green; /* Change color as needed */
}