* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: #f5f5f5;
            min-height: 100vh;
        }

        /* Modern Footer Styles */
        footer {
            background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
            color: white;
            position: relative;
            overflow: hidden;
        }

        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 60px 20px 30px;
        }

        .footer-main {
            display: grid;
            grid-template-columns: 2fr 1fr 1.5fr;
            gap: 60px;
            margin-bottom: 50px;
        }

        .footer-section h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 25px;
            color: white;
            position: relative;
        }

        .footer-section h3::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 40px;
            height: 3px;
            background: linear-gradient(45deg, #10b981, #34d399);
            border-radius: 2px;
        }

        .brand-section p {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.6;
            margin-bottom: 30px;
            font-size: 0.95rem;
        }

        .social-links {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        .social-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .social-link:hover {
            background: rgba(255, 255, 255, 0.2);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        }

        .legal-section ul {
            list-style: none;
        }

        .legal-section li {
            margin-bottom: 12px;
        }

        .legal-section a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }

        .legal-section a:hover {
            color: white;
            padding-left: 8px;
        }

        .legal-section a::before {
            content: '';
            position: absolute;
            left: -15px;
            top: 50%;
            transform: translateY(-50%);
            width: 0;
            height: 2px;
            background: linear-gradient(45deg, #10b981, #34d399);
            transition: width 0.3s ease;
        }

        .legal-section a:hover::before {
            width: 8px;
        }

        .contact-section {
            background: rgba(255, 255, 255, 0.05);
            padding: 30px;
            border-radius: 15px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
        }

        .contact-info {
            display: flex;
            align-items: center;
            gap: 12px;
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.95rem;
            font-weight: 500;
        }

        .contact-info i {
            color: #10b981;
            font-size: 1.1rem;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 30px;
            text-align: center;
        }

        .footer-bottom p {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
            font-weight: 500;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .footer-main {
                grid-template-columns: 1fr 1fr;
                gap: 40px;
            }
            
            .contact-section {
                grid-column: 1 / -1;
            }
        }

        @media (max-width: 768px) {
            .footer-container {
                padding: 40px 20px 20px;
            }
            
            .footer-main {
                grid-template-columns: 1fr;
                gap: 35px;
                margin-bottom: 35px;
            }
            
            .footer-section h3 {
                font-size: 1.3rem;
                margin-bottom: 20px;
            }
            
            .social-links {
                justify-content: center;
            }
            
            .contact-section {
                text-align: center;
                padding: 25px;
            }
        }

        @media (max-width: 480px) {
            .footer-container {
                padding: 30px 15px 15px;
            }
            
            .social-link {
                width: 40px;
                height: 40px;
                font-size: 1.1rem;
            }
            
            .contact-section {
                padding: 20px;
            }
            
            .contact-info {
                flex-direction: column;
                text-align: center;
                gap: 8px;
            }
        }
