.sticky-sidebar {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    right: 40px; /* Positioned on the right with margin */
    z-index: 1000;
}

.sticky-sidebar a {
    display: block;
    margin: 10px 0;
}

.sticky-sidebar img {
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease;
}

.sticky-sidebar img:hover {
    transform: scale(1.1);
}