/* Grundzustand: Farbe #002F63, keine Unterstreichung */
a {
    color: #002F63;
    text-decoration: none;
    transition: color 0.3s ease; /* Sorgt für einen sanften Farbübergang */
}

/* Hover-Zustand: Farbe #00C8E0, weiterhin keine Unterstreichung */
a:hover {
    color: #00C8E0;
    text-decoration: none;
}