/* Enhanced Footer Styles - Standardized across all pages */
footer {
    background: var(--dark-gray);
    color: white;
    padding: 4rem 0 2rem;
    margin-top: auto;
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-blue);
    margin-bottom: 1rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-link:hover {
    color: var(--accent-blue);
    transform: translateX(5px);
}

.social-icon {
    width: 40px;
    height: 40px;
    background: var(--secondary-blue);
    color: white;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--light-blue);
    transform: translateY(-3px);
    color: white;
}

/* Responsive adjustments for footer */
@media (max-width: 768px) {
    footer { 
        padding: 3rem 0 2rem; 
    }
    
    .footer-brand {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .social-icon {
        margin: 0 0.25rem;
    }
}