Какой цвет стандартный у ссылок
a {
color: #0056b3;
text-decoration: none;
transition: color 0.2s, text-decoration 0.2s;
}
a:hover {
color: #003d82;
text-decoration: underline;
}
a:visited {
color: #0056b3; /* или ваш фирменный оттенок */
}
a:active {
color: #002a5c;
}
a:focus-visible {
outline: 2px solid #0056b3;
outline-offset: 2px;
}