.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    display: flex;
    justify-content: center;
    gap: 15px;
    text-align: center;
    margin-top: 10px;
    font-size: 14px;
    color: #777;
}

.footer-bottom a {
    text-decoration: none;
    color: rgb(0, 255, 255);
}

.footer-bottom a:hover {
    text-decoration: underline;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
}

.site-footer {
    background-color: #111;
    color: #fff;
    padding: 40px 20px 20px;
    font-family: var(--font3);
}


.footer-logo img {
    height: 50px;
}


.footer-socials a img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
    margin-right: 12px;
    transition: transform 0.2s;
}

.footer-socials a:hover img {
    transform: scale(1.1);
}