/* Remove underline from all links on hover across the entire site */
a:hover {
    text-decoration: none !important;
}

/* Also ensure links don't have underline by default */
a {
    text-decoration: none !important;
}

/* Remove underline from all link states */
a:link,
a:visited,
a:hover,
a:active {
    text-decoration: none !important;
}
