.site-footer {
    background: #031b40;
    color: #d4dcf0;
    padding: 52px 0 22px;
    margin-top: 0;
}

.site-footer .container {
    width: min(1180px, 92%);
    margin: 0 auto;
}

.site-footer-grid {
    display: grid;
    grid-template-columns: 1.35fr 0.85fr 1fr 1.1fr;
    gap: 28px 32px;
    align-items: start;
}

.site-footer-brand img {
    width: min(280px, 100%);
    height: auto;
    display: block;
    margin-bottom: 18px;
}

.site-footer-brand p {
    margin: 0;
    line-height: 1.7;
    font-size: 14px;
    color: #e2e8f5;
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
}

.site-footer h4 {
    margin: 0 0 16px;
    color: #fff;
    font-size: 15px;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.site-footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.site-footer a {
    color: #d4dcf0;
    text-decoration: none;
    transition: color .2s ease;
}

.site-footer a:hover {
    color: #00d1ff;
}

.site-footer-links li a {
    font-size: 14px;
    line-height: 1.45;
}

.site-footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    line-height: 1.5;
}

.site-footer-contact-icon {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-top: 2px;
    color: #00d1ff;
}

.site-footer-contact-icon svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    display: block;
}

.site-footer-copyright {
    border-top: 1px solid rgba(255, 255, 255, .14);
    margin-top: 34px;
    padding-top: 16px;
    text-align: center;
    font-size: 14px;
    color: #b8c4de;
}

@media (max-width: 992px) {
    .site-footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .site-footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 640px) {
    .site-footer-grid {
        grid-template-columns: 1fr;
    }
}
