footer.site-footer {
    padding: 5rem 0;
    background: var(--bg-dark-color);
}

.site-footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.footer-site-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-link {
    transition: .2s;
}

.contact-link:hover {
    color: var(--accent-color);
}

.menu-title {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.footer-menu-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-menu-list li {
    font-weight: 500;
    transition: .2s;
}

.footer-menu-list li:hover {
    transform: translateX(4px);
    color: var(--accent-color);
}

.footer-divider {
    margin: 3rem 0;
    border: 1px solid #fff3;
}

.footer-bottom {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    color: #fffa;
    font-size: 1.1rem;
    text-align: right;
    gap: 2rem;
}

.footer-bottom a:hover {
    color: var(--accent-color);
}


@media (max-width: 768px) {

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    footer.site-footer {
        padding: 2rem 0;
    }

    .site-footer-grid {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 3rem;
        text-align: left;
    }

    .footer-copyright {
        text-align: left;
    }
}