/* Universal Footer Styling */

.site-footer {
    background: linear-gradient(135deg, #5a6c7d 0%, #8b9aa7 100%);
    color: white;
    padding: 30px 20px;
    margin-top: 60px;
    text-align: center;
}

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

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    padding: 5px 10px;
    border-radius: 3px;
    transition: background 0.3s;
}

.footer-links a:hover {
    background: rgba(255,255,255,0.2);
}

.footer-contact {
    margin: 10px 0;
    font-size: 14px;
}

.footer-contact a {
    color: white;
    text-decoration: underline;
}

.footer-copyright {
    margin: 10px 0 0 0;
    font-size: 13px;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
}

