        .footer-container {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
        }
        
        .footer-container .main-footer {
            background-color: #ffffff;
            color: #4a5568;
            padding: 50px 0 20px;
            border-top: 1px solid #e2e8f0;
            box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.03);
        }
        
        .footer-container .footer-logo {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 20px;
            display: inline-block;
            color: #2d3748;
            position: relative;
        }
        .footer-container .footer-about {
            font-size: 14px; line-height: 1.6; color: #718096;padding-right: 30px
        }
        
        .footer-container .footer-logo:after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 40px;
            height: 3px;
            background: #4299e1;
            transition: all 0.3s ease;
        }
        
        .footer-container .footer-logo:hover:after {
            width: 60px;
        }
        
        .footer-container .footer-heading {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 20px;
            color: #2d3748;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }
        
        .footer-container .footer-links {
            list-style: none;
            padding: 0;
        }
        
        .footer-container .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-container .footer-links a {
            color: #4a5568;
            text-decoration: none;
            transition: all 0.2s ease;
            font-size: 14px;
        }
        
        .footer-container .footer-links a:hover {
            color: #4299e1;
            padding-left: 5px;
        }
        
        .footer-container .contact-info {
            margin-bottom: 15px;
            display: flex;
            align-items: flex-start;
        }
        
        .footer-container .contact-info i {
            margin-right: 12px;
            color: #4299e1;
            font-size: 16px;
            margin-top: 3px;
        }
        
        .footer-container .contact-info div {
            font-size: 14px;
            line-height: 1.5;
        }
        
        .footer-container .contact-info strong {
            display: block;
            color: #2d3748;
            margin-bottom: 2px;
        }
        
        .footer-container .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            background: #edf2f7;
            border-radius: 8px;
            color: #4a5568;
            text-align: center;
            margin-right: 8px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .footer-container .social-links a:hover {
            background: #4299e1;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 4px 6px rgba(66, 153, 225, 0.2);
        }
        
        .footer-container .newsletter-section {
            background: #f7fafc;
            border-radius: 8px;
            padding: 25px;
            margin-bottom: 30px;
        }
        
        .footer-container .newsletter-title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 15px;
            color: #2d3748;
        }
        
        .footer-container .newsletter-desc {
            font-size: 14px;
            color: #718096;
            margin-bottom: 15px;
        }
        
        .footer-container .newsletter-form {
            display: flex;
        }
        
        .footer-container .newsletter-form input {
            border: 1px solid #e2e8f0;
            border-radius: 6px 0 0 6px;
            padding: 10px 15px;
            width: 70%;
            font-size: 14px;
            transition: all 0.2s ease;
        }
        
        .footer-container .newsletter-form input:focus {
            border-color: #4299e1;
            box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.2);
            outline: none;
        }
        
        .footer-container .newsletter-form button {
            background: #4299e1;
            color: white;
            border: none;
            border-radius: 0 6px 6px 0;
            padding: 10px 20px;
            font-weight: 500;
            font-size: 14px;
            transition: all 0.2s ease;
            white-space: nowrap;
        }
        
        .footer-container .newsletter-form button:hover {
            background: #3182ce;
            transform: translateY(-1px);
            box-shadow: 0 4px 6px rgba(66, 153, 225, 0.2);
        }
        
        .footer-container .policy-links {
            display: flex;
            flex-wrap: wrap;
            margin: 20px 0;
            padding: 15px 0;
            border-top: 1px solid #e2e8f0;
            border-bottom: 1px solid #e2e8f0;
        }
        
        .footer-container .policy-links a {
            color: #4a5568;
            text-decoration: none;
            margin-right: 20px;
            font-size: 13px;
            transition: all 0.2s ease;
        }
        
        .footer-container .policy-links a:hover {
            color: #4299e1;
        }
        
        .footer-container .footer-bottom {
            background: #f7fafc;
            padding: 20px 0;
            color: #718096;
            font-size: 13px;
        }
        
        .footer-container .footer-bottom a {
            color: #4299e1;
            text-decoration: none;
            transition: all 0.2s ease;
        }
        
        .footer-container .footer-bottom a:hover {
            color: #3182ce;
            text-decoration: underline;
        }
        
        .footer-container .payment-methods img {
            height: 24px;
            margin-left: 8px;
            transition: all 0.2s ease;
        }
        
        .footer-container .payment-methods img:hover {
            filter: none;
        }
        
        /* Cookie Consent Styling */
        .footer-container .cookie-consent {
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%) translateY(150%);
            max-width: 90%;
            width: 100%;
            max-width: 800px;
            background: white;
            color: #4a5568;
            padding: 20px;
            z-index: 9999;
            border-radius: 12px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .footer-container .cookie-consent.show {
            transform: translateX(-50%) translateY(0);
        }
        
        .footer-container .cookie-consent p {
            margin-bottom: 15px;
            font-size: 14px;
            line-height: 1.5;
        }
        
        .footer-container .cookie-consent .btn {
            margin-right: 8px;
            min-width: 90px;
            font-size: 13px;
            font-weight: 500;
            padding: 8px 12px;
            border-radius: 6px;
            transition: all 0.2s ease;
        }
        
        .footer-container .cookie-consent .btn-accept {
            background: #4299e1;
            color: white;
            border: none;
        }
        
        .footer-container .cookie-consent .btn-accept:hover {
            background: #3182ce;
            transform: translateY(-1px);
            box-shadow: 0 4px 6px rgba(66, 153, 225, 0.2);
        }
        
        .footer-container .cookie-consent .btn-decline {
            background: transparent;
            color: #718096;
            border: 1px solid #cbd5e0;
        }
        
        .footer-container .cookie-consent .btn-decline:hover {
            background: #f7fafc;
            border-color: #a0aec0;
        }
        
        .footer-container .cookie-consent .btn-settings {
            background: transparent;
            color: #4299e1;
            border: 1px solid #bee3f8;
        }
        
        .footer-container .cookie-consent .btn-settings:hover {
            background: #ebf8ff;
        }
        
        /* Animation for elements */
        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }
        
        .footer-container .animated {
            animation: fadeIn 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;
                position: relative;
                padding-right: 20px;
            }
            
            .footer-container .footer-heading:after {
                content: '+';
                position: absolute;
                right: 0;
                top: 0;
                font-size: 18px;
                color: #4299e1;
                transition: transform 0.3s ease;
            }
            
            .footer-container .footer-heading.active:after {
                content: '-';
            }
            
            .footer-container .footer-links {

            }
            
            .footer-container .footer-heading.active + .footer-links {
                max-height: 500px;
            }
            
            .footer-container .newsletter-form {
                flex-direction: column;
            }
            
            .footer-container .newsletter-form input,
            .footer-container .newsletter-form button {
                width: 100%;
                border-radius: 6px;
            }
            
            .footer-container .newsletter-form input {
                margin-bottom: 10px;
            }
        }
        
        @media (max-width: 767.98px) {
            .footer-container .main-footer {
                padding: 40px 0 20px;
            }
            
            .footer-container .policy-links a {
                margin-right: 15px;
                margin-bottom: 8px;
            }
            
            .footer-container .footer-bottom .text-right {
                text-align: left !important;
                margin-top: 15px;
            }
            
            .footer-container .cookie-consent {
                bottom: 10px;
                padding: 15px;
            }
            
            .footer-container .cookie-consent .btn {
                display: block;
                width: 100%;
                margin-bottom: 8px;
                margin-right: 0;
            }
            
            .footer-container .cookie-consent .btn:last-child {
                margin-bottom: 0;
            }
			.footer-container .footer-about {padding-right:0}
        }