@charset "utf-8";

/* Footer */
.footer {
    background-color: #333;
    color: #fff;
    padding: 25px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
}
.footer-links a { color: white; margin-left: 20px; transition: color 0.3s; }
.footer-links a:hover { color: var(--hover-link-color); }
.footer-powerdby { font-size: 14px; }

.footer-powerdby img {
    width: 150px;
}

.copyright a {
    color: white;
}



/* Responsive */
@media (max-width: 768px) {
    .footer { flex-direction: column; gap: 20px; text-align: center; }
    .footer .copyright { order: 999; }
    .footer-links { display: flex; flex-direction: column; gap: 10px; }
    .footer-links a { margin-left: 0; }
}