    .footer-heading {
        font-size: 1.1rem;
        font-weight: 700;
        margin-bottom: 1rem;
        color: inherit;
    }
    .social-icons {
        display: flex;
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .social-icon-link {
        text-decoration: none;
        display: inline-block;
        transition: all 0.3s ease;
    }
    
    .social-icon-wrapper {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        transition: all 0.3s ease;
    }
    
    /* Facebook icon - white background, blue icon */
    .facebook-icon {
        background-color: white;
        border: 1px solid #e0e0e0;
    }
    
    .facebook-icon i {
        color: #1877f2;
        font-size: 1.25rem;
    }
    
    .facebook-icon:hover {
        background-color: #1877f2;
        border-color: #1877f2;
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(24, 119, 242, 0.3);
    }
    
    .facebook-icon:hover i {
        color: white;
    }
    
    /* X (Twitter) icon - white background, black icon */
    .x-icon {
        background-color: white;
        border: 1px solid #e0e0e0;
    }
    
    .x-icon i {
        color: #000000;
        font-size: 1.25rem;
    }
    
    .x-icon:hover {
        background-color: #000000;
        border-color: #000000;
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }
    
    .x-icon:hover i {
        color: white;
    }
    
    /* Remove old styles for .social-icon if they exist */
    .footer-modern .social-icon {
        display: none;
    }
    /* Cookie Consent Banner - Clean Light Design */
    .cookie-consent {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: #f8f9fa;
        padding: 1.25rem 2rem;
        z-index: 99999;
        box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
        border-top: 1px solid #e5e7eb;
    }
    
    .cookie-content {
        max-width: 1400px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 2rem;
        flex-wrap: wrap;
    }
    
    .cookie-text-section {
        flex: 1;
        min-width: 300px;
    }
    
    .cookie-title {
        color: #1f2937;
        font-size: 1rem;
        font-weight: 700;
        margin: 0 0 0.35rem 0;
    }
    
    .cookie-description {
        color: #4b5563;
        font-size: 0.875rem;
        margin: 0;
        line-height: 1.5;
    }
    
    .cookie-link {
        color: #1f2937;
        font-weight: 600;
        text-decoration: underline;
    }
    
    .cookie-link:hover {
        color: #0d9488;
    }
    
    .cookie-buttons {
        display: flex;
        gap: 0.75rem;
        flex-shrink: 0;
    }
    
    .cookie-btn {
        padding: 0.625rem 1.5rem;
        border-radius: 4px;
        font-weight: 500;
        font-size: 0.875rem;
        cursor: pointer;
        transition: all 0.2s ease;
        white-space: nowrap;
    }
    
    .cookie-btn-accept {
        background: #ffffff;
        color: #1f2937;
        border: 2px solid #1f2937;
    }
    
    .cookie-btn-accept:hover {
        background: #1f2937;
        color: #ffffff;
    }
    
    .cookie-btn-preferences {
        background: #ffffff;
        color: #1f2937;
        border: 2px solid #1f2937;
    }
    
    .cookie-btn-preferences:hover {
        background: #1f2937;
        color: #ffffff;
    }
    
    .cookie-btn-reject {
        background: #ffffff;
        color: #1f2937;
        border: 2px solid #1f2937;
    }
    
    .cookie-btn-reject:hover {
        background: #1f2937;
        color: #ffffff;
    }
    
    /* Cookie Preferences Modal */
    .cookie-modal {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 100000;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 1rem;
    }
    
    .cookie-modal-content {
        background: #ffffff;
        border-radius: 12px;
        max-width: 500px;
        width: 100%;
        max-height: 90vh;
        overflow-y: auto;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    }
    
    .cookie-modal-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1.25rem 1.5rem;
        border-bottom: 1px solid #e5e7eb;
    }
    
    .cookie-modal-header h3 {
        margin: 0;
        font-size: 1.25rem;
        color: #1f2937;
    }
    
    .cookie-modal-close {
        background: none;
        border: none;
        font-size: 1.75rem;
        cursor: pointer;
        color: #6b7280;
        line-height: 1;
        padding: 0;
    }
    
    .cookie-modal-close:hover {
        color: #1f2937;
    }
    
    .cookie-modal-body {
        padding: 1.5rem;
    }
    
    .cookie-option {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        padding: 1rem 0;
        border-bottom: 1px solid #f3f4f6;
    }
    
    .cookie-option:last-child {
        border-bottom: none;
    }
    
    .cookie-option-info {
        flex: 1;
        padding-right: 1rem;
    }
    
    .cookie-option-info h5 {
        margin: 0 0 0.25rem 0;
        font-size: 0.95rem;
        color: #1f2937;
    }
    
    .cookie-option-info p {
        margin: 0;
        font-size: 0.8rem;
        color: #6b7280;
    }
    
    /* Toggle Switch */
    .cookie-toggle {
        flex-shrink: 0;
    }
    
    .cookie-toggle input {
        display: none;
    }
    
    .toggle-label {
        display: block;
        width: 48px;
        height: 26px;
        background: #d1d5db;
        border-radius: 13px;
        position: relative;
        cursor: pointer;
        transition: background 0.3s;
    }
    
    .toggle-label::after {
        content: '';
        position: absolute;
        top: 3px;
        left: 3px;
        width: 20px;
        height: 20px;
        background: #ffffff;
        border-radius: 50%;
        transition: transform 0.3s;
        box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    }
    
    .cookie-toggle input:checked + .toggle-label {
        background: #0d9488;
    }
    
    .cookie-toggle input:checked + .toggle-label::after {
        transform: translateX(22px);
    }
    
    .toggle-label.disabled {
        opacity: 0.6;
        cursor: not-allowed;
    }
    
    .cookie-modal-footer {
        padding: 1rem 1.5rem;
        border-top: 1px solid #e5e7eb;
        text-align: right;
    }
    
    .cookie-btn-save {
        background: #0d9488;
        color: #ffffff;
        border: none;
        padding: 0.75rem 2rem;
    }
    
    .cookie-btn-save:hover {
        background: #0f766e;
    }
    
    @media (max-width: 768px) {
        .cookie-consent {
            padding: 1rem 1.25rem;
        }
        
        .cookie-content {
            flex-direction: column;
            text-align: center;
            gap: 1rem;
        }
        
        .cookie-text-section {
            min-width: auto;
        }
        
        .cookie-buttons {
            flex-direction: column;
            width: 100%;
        }
        
        .cookie-btn {
            width: 100%;
        }
    }
.exit-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.exit-popup-content {
    background: white;
    border-radius: 20px;
    padding: 40px;
    max-width: 480px;
    width: 100%;
    text-align: center;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.exit-popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    color: #94a3b8;
    cursor: pointer;
    transition: color 0.2s;
    line-height: 1;
}

.exit-popup-close:hover {
    color: #64748b;
}

.exit-popup-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.exit-popup-icon i {
    font-size: 36px;
    color: white;
}

.exit-popup-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
}

.exit-popup-subtitle {
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.exit-popup-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    text-align: left;
}

.exit-popup-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    color: #334155;
    font-size: 1rem;
}

.exit-popup-benefits li i {
    color: #10b981;
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.exit-popup-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 32px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.exit-popup-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    color: white;
}

.exit-popup-login {
    margin-top: 20px;
    color: #64748b;
    font-size: 0.95rem;
}

.exit-popup-login a {
    color: #667eea;
    font-weight: 600;
    text-decoration: none;
}

.exit-popup-login a:hover {
    text-decoration: underline;
}

@media (max-width: 480px) {
    .exit-popup-content {
        padding: 30px 20px;
    }
    
    .exit-popup-content h2 {
        font-size: 1.4rem;
    }
    
    .exit-popup-icon {
        width: 60px;
        height: 60px;
    }
    
    .exit-popup-icon i {
        font-size: 28px;
    }
}
