.site-footer {
    padding: 4rem 4rem 2rem;

    background: rgba(32, 35, 42, 0.94);
    color: #f4f5f7;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.footer-logo {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.footer-brand strong {
    font-size: 1.1rem;
}

.footer-brand p {
    margin: 0.5rem 0 0;

    color: rgba(244, 245, 247, 0.72);
    line-height: 1.5;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #f4f5f7;
    text-decoration: none;
}

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

.footer-bottom {
    max-width: 1100px;
    margin: 3rem auto 0;
    padding-top: 1.5rem;

    border-top: 1px solid rgba(255, 255, 255, 0.14);

    color: rgba(244, 245, 247, 0.58);
    font-size: 0.9rem;
}

.footer-bottom p {
    margin: 0;
}

@media (max-width: 600px) {
    .site-footer {
        padding: 3rem 1.5rem 2rem;
    }

    .footer-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 1.25rem;
    }

    .footer-bottom {
        margin-top: 2rem;
    }
}