.site-footer {
    background: #1e2a3a;
    color: #ffffff;
    padding: 4rem 0 2rem;
    margin-top: 4rem;
    border-top: none;
}

.dark-mode .site-footer {
    background: #0f172a;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-section h4 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    opacity: 0.9;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-section ul li a:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.footer-bottom {
    max-width: 1200px;
    margin: 3rem auto 0;
    padding: 2rem 20px 0;
    border-top: 1px solid rgba(203, 213, 225, 0.1);
    text-align: center;
    color: #cbd5e1;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-section ul li a:hover {
        transform: none;
    }}

.site-footer a,
.site-footer a:visited,
.site-footer a:active {
    color: #cbd5e1 !important;
    text-decoration: none !important;
}

.site-footer a:hover {
 .site-footer a:hover {
    color: #ffffff !important;
}