      
body {
  background-color: #d4d4d4;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; /* Example font stack */
}

h1, h2, h3 {
  color: #333; /* Darker headings */
}

/* Add more custom styles here */

/* Example: Make paragraphs and list items default black */
p, li {
  color: #000000; /* Black text */
}

/* Example: Make muted text a darker gray */
.text-muted {
  color: #555555 !important; /* Darker gray. Use !important if needed to override Bootstrap */
}

/* Example: Ensure links are clearly visible */
a {
    color: #0056b3; /* A standard blue link color */
}
a:hover {
    color: #003d80; /* Darker blue on hover */
}