.site-footer {
    background: var(--footer-bg);
    color: var(--footer-text);
    padding: 2rem 2rem 1.5rem;
    margin-top: 4rem;
    transition: background 0.3s ease;
}

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

.footer-menu {
    border-bottom: 1px solid rgba(255,255,255,0.15);
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.footer-nav li a {
    color: #FFFB00;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 8px;
}

.footer-nav li a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0%;
    height: 2px;
    background: #FFFB00;
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.footer-nav li a:hover::before {
    width: 100%;
}

.footer-bottom {
    text-align: center;
    font-size: 0.8rem;
}

.footer-bottom p {
    margin: 0.3rem 0;
    color: #FF0000;
}

.footer-bottom a {
    color: #FF0000;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 4px;
}

.footer-bottom a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0%;
    height: 2px;
    background: #FF0000;
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.footer-bottom a:hover::before {
    width: 100%;
}

@media (max-width: 768px) {
    .site-footer {
        padding: 1.5rem 1rem 1rem;
    }
    
    .footer-nav {
        gap: 1rem;
    }
    
    .footer-nav li a {
        font-size: 0.75rem;
    }
    
    .footer-nav li a::before {
        display: none;
    }
}