        .footer-container {
            width: 100%;
            max-width: 1200px;
            background: #fff;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }
        
        #footer {
            background: linear-gradient(135deg, #31364c, #252a3f);
            padding: 50px 0 30px;
            color: white;
            position: relative;
        }
        
        .footer-wave {
            position: absolute;
            top: -40px;
            left: 0;
            width: 100%;
            height: 40px;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z" fill="%2331364c"></path></svg>');
            background-size: cover;
        }
        
        .footer-content {
            display: flex;
            justify-content: space-around;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            flex-wrap: wrap;
            gap: 40px;
        }
        
        .contact-section {
            flex: 1;
            min-width: 300px;
        }
        
        .contact-title {
            color: #e77535;
            font-size: 2.2rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
            text-align: center;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .contact-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: #e77535;
            border-radius: 3px;
        }
        
        .qr-container {
            text-align: center;
            margin-bottom: 25px;
            position: relative;
        }
        
        .qr-container img {
            width: 200px;
            border: 5px solid white;
            border-radius: 10px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
            transition: all 0.4s ease;
        }
        
        .qr-container img:hover {
            transform: scale(1.05);
            box-shadow: 0 12px 30px rgba(231, 117, 53, 0.4);
        }
        
        .whatsapp-text {
            display: inline-block;
            background: #e77535;
            color: white;
            padding: 8px 15px;
            border-radius: 30px;
            font-weight: 600;
            margin-top: 15px;
            transition: all 0.3s ease;
        }
        
        .whatsapp-text:hover {
            background: #d86a2c;
            transform: translateY(-3px);
        }
        
        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }
        
        .info-item {
            display: flex;
            align-items: center;
            gap: 20px;
            padding: 15px;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 10px;
            transition: all 0.3s ease;
            border-left: 4px solid #e77535;
        }
        
        .info-item:hover {
            background: rgba(231, 117, 53, 0.15);
            transform: translateX(5px);
        }
        
        .info-item i {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #e77535, #d86a2c);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            color: white;
            flex-shrink: 0;
        }
        
        .info-text {
            flex: 1;
        }
        
        .info-text span {
            display: block;
        }
        
        .info-label {
            font-size: 0.9rem;
            color: #bbb;
            margin-bottom: 5px;
        }
        
        .info-value {
            font-size: 1.1rem;
            font-weight: 500;
        }
        
        .copyright {
            text-align: center;
            padding-top: 40px;
            margin-top: 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #aaa;
            font-size: 0.95rem;
        }
        
        .copyright a {
            color: #e77535;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .copyright a:hover {
            text-decoration: underline;
        }
        
        .social-links {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 25px;
        }
        
        .social-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }
        
        .social-icon:hover {
            background: #e77535;
            transform: translateY(-5px);
        }
        
        @media (max-width: 768px) {
            .footer-content {
                flex-direction: column;
                align-items: center;
                gap: 50px;
            }
            
            .contact-section {
                width: 100%;
            }
            
            .contact-title {
                font-size: 1.8rem;
            }
        }