.site-footer {
    background: #222831;
    color: #bfc5cd;
    padding: 80px 20px 30px;
    font-family: Arial, sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
}

/* TITLES */
.footer-col h3 {
    color: #ffffff;
    font-size: 20px;
    margin-bottom: 20px;
}

/* TEXT */
.footer-col p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* BUTTON */
.footer-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #fd0138;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
}

/* LISTS */
.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #bfc5cd;
    text-decoration: none;
    font-size: 15px;
}

.footer-col ul li a:hover {
    color: #ffffff;
}

/* CONTACT */
.footer-contact li {
    font-size: 15px;
    line-height: 1.6;
}

/* SOCIAL */
.footer-social {
    margin-top: 20px;
}

.footer-social a {
    display: inline-flex;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    background: #2f3640;
    color: #fff;
    border-radius: 50%;
    margin-right: 8px;
    text-decoration: none;
    font-size: 16px;
}

.footer-social a:hover {
    background: #e10600;
}

/* BOTTOM */
.footer-bottom {
    text-align: center;
    margin-top: 60px;
    font-size: 14px;
    color: #9aa0a6;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 576px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }
}
