.footer {
    background-color: var(--neutral-900);
    color: white;
    padding: var(--space-2xl) 0 var(--space-lg);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-xl);
}

.footer-logo img {
    height: 60px;
    width: auto;
}

.footer-social {
    display: flex;
    gap: var(--space-md);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--neutral-800);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--primary-500);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-lg);
    border-top: 1px solid var(--neutral-800);
}

.footer-bottom p {
    color: var(--neutral-400);
    font-size: 0.9rem;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: var(--space-xl);
    }
    
    .footer-logo {
        margin-bottom: var(--space-md);
    }
}