.site-footer {
    border-top: 1px solid #e6e6e6;
    padding: 60px 80px 30px;
    font-family: inherit;
    color: #fff;
}

.footer-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 60px;
}

.footer-links {
    display: flex;
    gap: 40px;
}

.footer-column h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 14px;
    color: #fff;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-column ul li a {
    text-decoration: none;
    font-size: 14px;
    color: #fff;
    transition: color 0.2s ease;
}

.footer-column ul li a:hover {
    color: #6739b7;
}

.certification {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.certification img {
    width: 140px;
}

.certification span {
    font-size: 11px;
    color: #777;
}

/* Bottom area */
.footer-bottom {
    margin-top: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-brand a {
    text-decoration: none;
    color: inherit;
}

.footer-copy {
    font-size: 13px;
    color: #fff;
}

.footer-social {
    display: flex;
    gap: 14px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 15px;
}

.icon {
    width: 36px;
    height: 36px;
    background: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff; /* controls SVG color */
}

.icon svg {
    width: 16px;
    height: 16px;
}

/* ============================= */
/* MOBILE RESPONSIVE FOOTER */
/* ============================= */

@media (max-width: 768px) {

    .site-footer {
        padding: 40px 20px 20px;
    }

    .footer-container {
        flex-direction: column;
        gap: 40px;
    }

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

    .footer-column h4 {
        font-size: 14px;
    }

    .footer-column ul li a {
        font-size: 14px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        margin-top: 40px;
    }

    .footer-social {
        justify-content: flex-start;
    }

    .footer-copy {
        font-size: 12px;
    }
}
