 /* Footer */
    .footer {
        background: #1e293b;
        color: rgba(255,255,255,0.8);
        padding: 60px 0 30px;
    }
    
    .footer-title {
        color: var(--accent-color);
        font-size: 1.25rem;
        font-weight: 600;
        margin-bottom: 1.5rem;
    }
    
    .footer a {
        color: rgba(255,255,255,0.7);
        text-decoration: none;
        transition: all 0.3s ease;
    }
    
    .footer a:hover {
        color: var(--light-blue);
    }
    
    .footer-links {
        list-style: none;
        padding: 0;
    }
    
    .footer-links li {
        margin-bottom: 0.75rem;
    }
    
    .social-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: rgba(255,255,255,0.1);
        border-radius: 50%;
        margin-right: 0.5rem;
        transition: all 0.3s ease;
    }
    
    .social-links a:hover {
        background: var(--light-blue);
        color: white;
        transform: translateY(-3px);
    }
    
    .copyright {
        margin-top: 3rem;
        padding-top: 2rem;
        border-top: 1px solid rgba(255,255,255,0.1);
        text-align: center;
        font-size: 0.9rem;
    }
    
    /* Responsive */
    @media (max-width: 768px) {
        .hero-title {
            font-size: 2.5rem;
        }
        
        .hero-subtitle {
            font-size: 1.1rem;
        }
        
        .section-title {
            font-size: 2rem;
        }
        
        .stat-number {
            font-size: 2rem;
        }
    }