    :root {
        --primary-color: #FF6B6B;
        --secondary-color: #4ECDC4;
        --accent-color:rgb(255, 131, 59);
        --dark-color: #1a1a2e;
        --light-color: #f8f9fa;
    }
    
    .site-footer {
        background: linear-gradient(135deg, var(--dark-color) 0%, #0d0d1a 100%);
        color: white;
        padding: 3rem 0 1.5rem;
        position: relative;
        overflow: hidden;
        margin-top: 5rem;
    }
    
    .site-footer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    }
    
    .footer-logo {
        max-width: 180px;
        margin-bottom: 1.5rem;
        filter: brightness(0) invert(1);
        transition: all 0.3s ease;
    }
    
    .footer-logo:hover {
        transform: scale(1.05);
        opacity: 0.9;
    }
    
    .footer-title {
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
        color: white;
        position: relative;
        display: inline-block;
    }
    
    .footer-title::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 50px;
        height: 3px;
        background: var(--accent-color);
        border-radius: 3px;
    }
    
    .footer-description {
        color: rgba(255, 255, 255, 0.7);
        margin-bottom: 1.5rem;
        max-width: 300px;
    }
    
    .footer-links {
        list-style: none;
        padding: 0;
    }
    
    .footer-links li {
        margin-bottom: 0.7rem;
    }
    
    .footer-links a {
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
        transition: all 0.3s ease;
        display: inline-block;
    }
    
    .footer-links a:hover {
        color: white;
        transform: translateX(5px);
    }
    
    .footer-links i {
        margin-right: 8px;
        color: var(--accent-color);
        width: 20px;
        text-align: center;
    }
    
    .social-links {
        display: flex;
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1.2rem;
        transition: all 0.3s ease;
    }
    
    .social-link:hover {
        background: var(--primary-color);
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(67, 97, 238, 0.3);
    }
    
    .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 1.5rem;
        margin-top: 2rem;
        color: rgba(255, 255, 255, 0.6);
        font-size: 0.9rem;
    }
    
    .footer-bottom a {
        color: var(--accent-color);
        text-decoration: none;
    }
    
    .footer-bottom a:hover {
        text-decoration: underline;
    }
    
    @media (max-width: 768px) {
        .footer-col {
            margin-bottom: 2rem;
        }
        
        .footer-title {
            font-size: 1.3rem;
        }
    }