<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">        .footer-container {
            background: linear-gradient(135deg, #2c3e50 0%, #1a1a2e 100%);
            color: #ffffff;
            padding: 3rem 0 1rem;
            position: relative;
            overflow: hidden;
        }
        
        .footer-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #3498db, #9b59b6, #e74c3c);
            animation: rainbow 8s linear infinite;
        }
        
        @keyframes rainbow {
            0% { background-position: 0% 50%; }
            100% { background-position: 100% 50%; }
        }
        
        .footer-container h5 {
            color: #ffffff;
            font-weight: 600;
            margin-bottom: 1.5rem;
            position: relative;
            display: inline-block;
        }
        
        .footer-container h5::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 50px;
            height: 3px;
            background-color: #3498db;
            transition: all 0.3s ease;
        }
        
        .footer-container h5:hover::after {
            width: 100%;
            background-color: #e74c3c;
        }
        
        .footer-container ul li {
            margin-bottom: 0.8rem;
            transition: all 0.3s ease;
        }
        
        .footer-container ul li:hover {
            transform: translateX(5px);
        }
        
        .footer-container ul li a {
            color: #bdc3c7;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer-container ul li a:hover {
            color: #ffffff;
            padding-left: 5px;
        }
        
        .footer-container .contact-info p {
            margin-bottom: 0.8rem;
            display: flex;
            align-items: center;
        }
        
        .footer-container .contact-info i {
            margin-right: 10px;
            color: #3498db;
            width: 20px;
            text-align: center;
        }
        
        .footer-container .social-icons a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            color: #ffffff;
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            margin-right: 10px;
            transition: all 0.3s ease;
        }
        
        .footer-container .social-icons a:hover {
            background: #3498db;
            transform: translateY(-5px);
        }
        
        .footer-container .newsletter input {
            background: rgba(255, 255, 255, 0.1);
            border: none;
            color: #ffffff;
        }
        
        .footer-container .newsletter input::placeholder {
            color: #bdc3c7;
        }
        
        .footer-container .newsletter .btn {
            background: #3498db;
            color: #ffffff;
            border: none;
            transition: all 0.3s ease;
        }
        
        .footer-container .newsletter .btn:hover {
            background: #2980b9;
            transform: translateY(-2px);
        }
        
        .footer-container .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 1.5rem;
            margin-top: 2rem;
        }
        
        .footer-container .payment-methods img {
            height: 30px;
            margin-right: 10px;
            transition: all 0.3s ease;
        }
        
        .footer-container .payment-methods img:hover {
            filter: none;
        }
        
        .footer-container .back-to-top {
            position: absolute;
            top: -20px;
            right: 20px;
            width: 40px;
            height: 40px;
            background: #3498db;
            color: #ffffff;
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }
        
        .footer-container .back-to-top:hover {
            background: #e74c3c;
            transform: translateY(-5px);
        }

        .footer-container .footer-about{padding-right:20px}
        
        @media (max-width: 767px) {
            .footer-container {
                text-align: center;
            }
            
            .footer-container h5::after {
                left: 50%;
                transform: translateX(-50%);
            }
            
            .footer-container .social-icons,
            .footer-container .payment-methods {
                justify-content: center;
            }
            
            .footer-container .back-to-top {
                right: 50%;
                transform: translateX(50%);
            }
			.footer-container .footer-about{padding-right:0}
        }</pre></body></html>