.footer {
    background: white;
    padding: 60px 24px 40px 24px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

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

.footer-logo-text {
    font-size: 20px;
    font-weight: 600;
    color: #000000;
}

.footer-nav {
    display: flex;
    gap: 32px;
}

.footer-link {
    color: #9ca3af;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.2s;
}

.footer-link:hover {
    color: #6b7280;
}

.footer-copyright {
    color: #9ca3af;
    font-size: 13px;
    font-weight: 400;
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 20px 30px 20px;
    }
    
    .footer-container {
        gap: 24px;
    }
    
    .footer-nav {
        gap: 20px;
    }
    
    .footer-link {
        font-size: 13px;
    }
}