/* Site Footer */
.site-footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 20px 0;
    margin-top: auto;
    border-top: 3px solid #1a365d;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

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

.footer-links a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #3498db;
    text-decoration: underline;
}

.footer-support {
    margin-bottom: 10px;
}

.footer-support a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-support a:hover {
    color: #3498db;
    text-decoration: underline;
}

.footer-support a i {
    margin-right: 5px;
}

.footer-copyright {
    font-size: 13px;
    color: #95a5a6;
}

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