/* General link styling */
a {
  color: #0056b3;          /* Default link color */
  text-decoration: none;   /* Remove underline */
  font-weight: 500;        /* Slightly bold */
  transition: color 0.3s ease, text-decoration 0.3s ease;
}

/* Link hover effect */
a:hover {
  color: #ff6600;          /* Change color on hover */
  text-decoration: underline;
}


/* Visited links */
a:visited {
  color: #800080;          /* Purple for visited links */
}
