   footer {
            background-color: #3a3a3a;
            background-image:
                radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.08), transparent 55%),
                radial-gradient(circle at 80% 0%, rgba(255, 255, 255, 0.05), transparent 45%),
                linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(0, 0, 0, 0.12));
            background-attachment: fixed;
            background-position: center;
            background-size: cover;
            color: white;
            padding: 3rem 2rem 2rem;
            margin-top: 5rem;
            position: relative;
            overflow: hidden;
        }

        @media (max-width: 768px) {
            footer {
                background-attachment: scroll;
            }
        }

        

        
        @keyframes typewriter {
            0% {
                width: 0;
            }
            100% {
                width: 100%;
            }
        }
        
        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 2rem;
            position: relative;
            z-index: 1;
        }
        
        .footer-section h3 {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            color: white;
        }
        
        .footer-contact p {
            margin-bottom: 0.5rem;
            color: #d0d0d0;
            line-height: 1.8;
        }
        
        .footer-contact a {
            color: #d0d0d0;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-contact a:hover {
            color: white;
        }
        
        .footer-links ul {
            list-style: none;
            padding: 0;
        }
        
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        
        .footer-links a {
            color: #d0d0d0;
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: 0.95rem;
        }
        
        .footer-links a:hover {
            color: white;
        }
        
        .footer-bottom {
            border-top: 1px solid #555;
            padding-top: 1.5rem;
            text-align: left;
            color: #999;
            font-size: 0.9rem;
            position: relative;
            z-index: 1;
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .language-selector {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: #d0d0d0;
        }
        
        .language-selector img {
            width: 20px;
            height: auto;
        }
        
        @media (max-width: 768px) {
            .footer-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .footer-logo-bg {
                font-size: 2.5rem;
            }
            
        }
