.skip-link {
    position: fixed;
    bottom: -50px;  
    left: 40px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    width: 10%;
    background: #747bff;
    color: white;
    padding: 8px 12px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    z-index: 10000;
    font-size: 20px;  
    transform: translateY(-10px);
    transition: all 0.3s ease;
    text-align: center;
    white-space: nowrap;
}
.skip-link:hover,
.skip-link:focus {
    opacity: 1;
    transform: translateY(-45px);
    outline: 2px solid #ffffff;
    outline-offset: 2px;
}