.site-footer {
    background-color: var(--primary-color);
    color: var(--background-color);
    padding: 30px 20px;
    text-align: center;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: row;
}

.footer-logo {
    max-width: 100%;
}

.footer-logo img {
    height: 150px;
    max-width: 100%;
    /* margin-bottom: 20px; */
}

.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-nav ul li a {
    color: var(--background-color);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.footer-nav ul li a:hover {
    color: var(--secondary-color);
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-social a {
    color: var(--background-color);
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: var(--secondary-color);
}

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

    .footer-logo {
        margin-bottom: 20px;
    }

    .footer-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}