.site-footer {
    width: 100%;
    background: #17343b;
    color: #ffffff;
}

.footer-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 58px 20px;

    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
}

.footer-brand img {
    width: 120px;
    margin-bottom: 18px;
}

.footer-brand p,
.footer-col p {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.7;
    font-size: 15px;
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 22px;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    transition: 0.2s ease;
}

.footer-socials a:hover {
    background: #ffffff;
    color: #17343b;
    transform: translateY(-2px);
}

.footer-socials i {
    font-size: 17px;
}

.footer-col h3 {
    font-size: 20px;
    margin-bottom: 18px;
}

.footer-col a {
    display: block;
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    margin-bottom: 12px;
    transition: 0.2s;
}

.footer-col a:hover {
    color: #ffffff;
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    text-align: center;
    padding: 18px 20px;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.68);
}

@media (max-width: 800px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 46px 20px;
    }

    .footer-brand img {
        width: 105px;
    }
}
