<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">        .footer-container .main-footer {
            background: linear-gradient(135deg, #2c3e50 0%, #4a6491 100%);
            color: #ffffff;
            padding: 40px 0 20px;
            position: relative;
            overflow: hidden;
        }
        
        .footer-container .main-footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #3498db 0%, #9b59b6 50%, #e74c3c 100%);
        }
        
        .footer-container .footer-logo {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 20px;
            display: inline-block;
            background: linear-gradient(to right, #ffffff, #f1c40f);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            transition: all 0.3s ease;
        }
        
        .footer-container .footer-logo:hover {
            transform: scale(1.05);
        }
        
        .footer-container .footer-heading {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-container .footer-heading::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 2px;
            background: #f1c40f;
        }
        
        .footer-container .footer-links {
            list-style: none;
            padding: 0;
        }
        
        .footer-container .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-container .footer-links a {
            color: #ecf0f1;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
        }
        
        .footer-container .footer-links a:hover {
            color: #f1c40f;
            transform: translateX(5px);
        }
        
        .footer-container .contact-info {
            margin-bottom: 15px;
            display: flex;
            align-items: flex-start;
        }
        
        .footer-container .contact-info i {
            margin-right: 10px;
            color: #f1c40f;
            font-size: 18px;
            margin-top: 3px;
        }
        
        .footer-container .social-links a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: #ffffff;
            text-align: center;
            line-height: 40px;
            margin-right: 10px;
            transition: all 0.3s ease;
        }
        
        .footer-container .social-links a:hover {
            background: #f1c40f;
            color: #2c3e50;
            transform: translateY(-5px);
        }
        
        .footer-container .newsletter-form {
            display: flex;
            margin-top: 20px;
        }
        
        .footer-container .newsletter-form input {
            border: none;
            border-radius: 4px 0 0 4px;
            padding: 10px 15px;
            width: 70%;
        }
        
        .footer-container .newsletter-form button {
            background: #f1c40f;
            color: #2c3e50;
            border: none;
            border-radius: 0 4px 4px 0;
            padding: 10px 15px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .footer-container .newsletter-form button:hover {
            background: #e67e22;
            color: #ffffff;
        }
        
        .footer-container .footer-bottom {
            background: #1a252f;
            padding: 15px 0;
            color: #bdc3c7;
            font-size: 14px;
        }
        
        .footer-container .footer-bottom a {
            color: #f1c40f;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer-container .footer-bottom a:hover {
            color: #e67e22;
            text-decoration: underline;
        }
        
        .footer-container .payment-methods img {
            height: 30px;
            margin-left: 10px;
            transition: all 0.3s ease;
        }
        
        .footer-container .payment-methods img:hover {
            filter: none;
        }
        
        /* Cookie Consent Styling */
        .footer-container .cookie-consent {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(0, 0, 0, 0.9);
            color: #ffffff;
            padding: 15px;
            z-index: 9999;
            transform: translateY(100%);
            transition: transform 0.5s ease;
        }
        
        .footer-container .cookie-consent.show {
            transform: translateY(0);
        }
        
        .footer-container .cookie-consent p {
            margin-bottom: 10px;
        }
        
        .footer-container .cookie-consent .btn {
            margin-right: 10px;
            min-width: 100px;
        }
        
        .footer-container .cookie-consent .btn-accept {
            background: #27ae60;
            color: white;
        }
        
        .footer-container .cookie-consent .btn-decline {
            background: #e74c3c;
            color: white;
        }
        
        .footer-container .cookie-consent .btn-settings {
            background: #3498db;
            color: white;
        }
        
        /* Animation for elements */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .footer-container .animated {
            animation: fadeInUp 0.6s ease forwards;
        }
        
        .footer-container .delay-1 {
            animation-delay: 0.1s;
        }
        
        .footer-container .delay-2 {
            animation-delay: 0.2s;
        }
        
        .footer-container .delay-3 {
            animation-delay: 0.3s;
        }
        
        .footer-container .delay-4 {
            animation-delay: 0.4s;
        }
        
        /* Responsive adjustments */
        @media (max-width: 991.98px) {
            .footer-container .footer-col {
                margin-bottom: 30px;
            }
            
            .footer-container .footer-heading {
                cursor: pointer;
            }
            
            .footer-container .footer-heading::after {
                content: '+';
                position: absolute;
                right: 0;
                left: auto;
                background: none;
                width: auto;
                height: auto;
            }
            
            .footer-container .footer-heading.active::after {
                content: '-';
            }
            
            .footer-container .footer-links {
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease;
            }

            
            .footer-container .footer-heading.active + .footer-links {
                max-height: 500px;
            }
        }
        
        @media (max-width: 767.98px) {
            .footer-container .newsletter-form {
                flex-direction: column;
            }
            
            .footer-container .newsletter-form input {
                width: 100%;
                border-radius: 4px;
                margin-bottom: 10px;
            }
            
            .footer-container .newsletter-form button {
                width: 100%;
                border-radius: 4px;
            }
            
            .footer-container .footer-bottom .text-right {
                text-align: left !important;
                margin-top: 10px;
            }
        }</pre></body></html>