.uct-footer {
    background: #fff;
    color: #7b7b7b;
    padding: 55px 5% 25px;
    box-shadow: 0 -2px 10px rgba(0,0,0,.08);
    font-family: 'Inter', system-ui, sans-serif;
}

.uct-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
}

.uct-footer h4 {
    color: #323232;
    font-size: 22px;
    margin-bottom: 18px;
    font-weight: 600;
}

.uct-footer p,
.uct-footer a,
.uct-footer li {
    color: #7b7b7b;
    font-size: 14px;
    line-height: 1.6;
    text-decoration: none;
}

.uct-footer-logo {
    max-width: 210px;
    margin-bottom: 18px;
}

.uct-footer-text {
    margin-bottom: 22px;
}

.uct-footer-col p {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 12px;
}

.uct-footer-col i {
    color: #828282;
    margin-top: 4px;
}

.uct-footer-social {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.uct-footer-social a {
    color: #3DA5D9;
    font-size: 22px;
}

.uct-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.uct-footer-links li {
    margin-bottom: 10px;
}

.uct-footer-logos {
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: center;
}

.uct-footer-logos img {
    max-width: 170px;
    height: auto;
}

.uct-footer-bottom {
    max-width: 1200px;
    margin: 35px auto 0;
    padding-top: 20px;
    border-top: 1px solid #c9c9c9;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.uct-footer-bottom p,
.uct-footer-bottom a {
    font-size: 13px;
    color: #828282;
}

@media (max-width: 900px) {
    .uct-footer-inner {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .uct-footer {
        text-align: center;
    }

    .uct-footer-inner {
        grid-template-columns: 1fr;
    }

    .uct-footer-col p {
        justify-content: center;
    }

    .uct-footer-social {
        justify-content: center;
    }

    .uct-footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}