.footer {
    background: #ffffff;
    padding: 2rem 2rem 1.5rem;
    margin-top: auto;
    border-top: 1px solid #eaeef2;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.footer-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f8fafc;
    transition: all 0.2s ease;
    color: #475569;
    text-decoration: none;
}

.footer-link:hover {
    background: #f5c518;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 197, 24, 0.25);
}

.footer-link:hover svg {
    fill: #000000;
}

.footer-link svg {
    width: 20px;
    height: 20px;
    fill: #475569;
    transition: fill 0.2s ease;
}

@media (max-width: 768px) {
    .footer {
        padding: 1.5rem 1rem 1rem;
    }
    
    .footer-links {
        gap: 1rem;
    }
    
    .footer-link {
        width: 36px;
        height: 36px;
    }
}