/* Base styles for the entire site */
body {
  background-color: #ffffff;   /* Use hex for consistency */
  color: #222222;              /* Softer black for better readability */
  font-family: Verdana, Arial, sans-serif; /* Add fallbacks */
  line-height: 1.6;            /* Improve text readability */
  margin: 0;                   /* Remove default browser margin */
  padding: 0;
}

/* Headings */
h1, h2, h3 {
  font-family: 'Segoe UI', Verdana, sans-serif;
  color: #333333;
  margin-bottom: 0.5em;
}

/* Links */
a {
  color: #0066cc;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
  color: #004999;
}

/* Paragraphs */
p {
  margin: 1em 0;
}

/* Lists */
ul {
  padding-left: 20px;
}
li {
  margin-bottom: 0.5em;
}
