.site-footer {
    background: #1c1c1c;
    padding: 60px 5%;
    display: flex;
    justify-content: space-evenly;
}

.footer-columns {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    align-items: flex-start;
}

.footer-column {
    flex: 1 1 220px;
    min-width: 200px;
}

.footer-column h4 {
    margin-bottom: 25px;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
}

.footer-middle {
    display: flex;
    gap: 10px;
    list-style: none;
}

.footer-column p {
    margin-bottom: 10px;
}

.footer-column li {
    margin-bottom: 10px;
}

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

.footer-brand .footer-logo {
    max-width: 80px;
    margin-bottom: 25px;
    display: block;
}

.footer-brand p,
.footer-brand a {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-vat {
    font-size: 1.1em;
}

.footer-column a:hover {
    color: #a9a9a9;
}

.footer-newsletter {
    text-align: left;
}

.footer-newsletter h4 {
    margin-bottom: 25px;
    font-weight: 400;
    line-height: 24px;
}

@media (max-width: 992px) {
    .footer-columns {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .footer-columns {
        align-items: center;
        text-align: left;
    }

    .footer-brand {
        text-align: left;
    }

    .footer-column {
        max-width: 400px;
        flex: unset;
    }

    .footer-middle {
        flex-direction: column;
        gap: 30px;
    }

    .footer-newsletter {
        text-align: left;
    }

    .footer-brand p,
    .footer-brand a {
        justify-content: flex-start;
    }
}