.no-underline {
    text-decoration: underline; /* Добавляем подчеркивание */
    text-decoration-thickness: 1px; /* Толщина подчеркивания */
    text-underline-offset: 5px; /* Расстояние от текста до подчеркивания */
    text-decoration-color: rgba(255, 255, 255, 0.4)
}

.no-underline:hover {
    text-decoration: none; /* Убираем подчеркивание при наведении */
}
