/* Normal/unvisited links */
a:link {
  color: #2c3e50; /* Dark blue */
  text-decoration: underline; /* Remove underline (optional) */
}
 
/* Visited links */
a:visited {
  color: #ddc182; /* Dark Yellow */
}
 
/* Hover state (mouse over) */
a:hover {
  color: #e74c3c; /* Red */
  text-decoration: underline; /* Add underline on hover (optional) */
}
 
/* Active state (when clicked) */
a:active {
  color: #c0392b; /* Dark red */
}