        .language-switcher {
            position: absolute;
            top: 10px;
            right: 20px;
        }
        
        button {
            padding: 10px 20px;
            background-color: #0066cc;
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-size: 16px;
            transition: all 0.3s ease;
        }
        button:hover {
            background-color: #004499;
            transform: translateY(-2px);
        }