/* ===== Common Footer ===== */
.site-footer {
    background-color: #000;
    padding: 44px 0 40px;
    margin-top: 20px;
}

.site-footer .container {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
    text-align: left;
}

.site-footer .footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    width: 100%;
    text-align: left;
}

.site-footer .footer-contact {
    flex: 1 1 auto;
    min-width: 0;
    text-align: left;
}

.site-footer .footer-contact h2 {
    color: #fff;
    font-size: 40px;
    margin: 0;
}

.site-footer .footer-contact p {
    color: #b3b3b3;
    margin-top: 10px;
}

.site-footer .footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
    margin-bottom: 0;
}

.site-footer .footer-links a {
    color: #737373;
    margin: 0;
    padding-right: 14px;
    border-right: 1px solid #525354;
}

.site-footer .footer-links a:last-child {
    border-right: none;
    padding-right: 0;
}

.site-footer .footer-qr {
    flex: 0 0 auto;
    text-align: center;
}

.site-footer .footer-qr img {
    width: 108px;
    height: 108px;
}

.site-footer .footer-qr p {
    color: #b3b3b3;
    font-size: 14px;
    text-align: center;
    margin-top: 10px;
}

.site-footer .footer-bottom {
    border-top: 1px solid #525354;
    padding-top: 12px;
    margin-top: 40px;
    font-size: 14px;
    color: #b3b3b3;
    text-align: left;
}

.site-footer .footer-bottom a {
    color: #b3b3b3;
    margin-right: 10px;
}

.site-footer .footer-bottom > div {
    margin-top: 10px;
}

@media screen and (max-width: 1200px) {
    .site-footer .container {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media screen and (max-width: 768px) {
    .site-footer .footer-top {
        flex-wrap: wrap;
        gap: 24px;
    }

    .site-footer .footer-contact h2 {
        font-size: 30px;
    }

    .site-footer .footer-qr {
        margin-top: 20px;
    }
}

@media screen and (max-width: 576px) {
    .site-footer .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .site-footer .footer-links {
        gap: 10px;
    }

    .site-footer .footer-bottom a {
        display: inline-block;
        margin-bottom: 5px;
    }
}
