.language-switcher {
            display: flex;
            margin-right: 30px;
            animation: appear 0.5s ease forwards; 
            opacity: 0; 
        }

        @keyframes appear {
            from {
            opacity: 0; 
            transform: translateY(-20px); 
        }
            to {
            opacity: 1; 
            transform: translateY(0); 
        }
    }

        .language-link img {
            width: 40px;
            height: 40px;
            margin-right: -20px;
            transition: transform 0.3s ease; 
        }

        .language-link:hover img {
            transform: scale(1.1); 
        }
