footer {
    background: var(--black-footer);
    color: white;
    padding: 72px 0;
    margin-top: 132px;
    display: block;
}

footer.site-footer .container {
    display: flex;
    gap: 100px;
}

footer.site-footer .container .text {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    padding-top: 16px;
}

footer.site-footer .container .col {
    /* width: 25%; */
    display: flex;
    flex-direction: column;
    min-width: 164px;
}


footer.site-footer .logo a {
    display: flex;
    color: white;
    text-decoration: none;
    gap: 12px;
    align-items: center;
    justify-content: flex-start;
}

footer.site-footer .logo a .logo-icon {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    border-radius: 50%;
    background-image: url("../images/wallet.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px 18px;
}

footer.site-footer .logo a span {
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
}
footer.site-footer .footer-menu {
    display: flex;
    flex-direction: column;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 24px;
}

footer.site-footer .footer-menu li {

}

footer.site-footer .footer-menu li a {
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    text-decoration: none;
    color: white;
}

footer.site-footer .footer-menu li:first-child a {
    font-weight: 700;
    font-size: 18px;
}

/* ========================================
   MOBILE RESPONSIVE STYLES
   ======================================== */

@media (max-width: 1024px) {
    footer {
        padding: 60px 0;
        margin-top: 80px;
    }
    
    footer.site-footer .container {
        gap: 60px;
    }
}

@media (max-width: 768px) {
    footer {
        padding: 48px 0;
        margin-top: 60px;
    }
    
    footer.site-footer .container {
        flex-wrap: wrap;
        gap: 40px;
    }
    
    footer.site-footer .container .col {
        min-width: calc(50% - 20px);
    }
    
    footer.site-footer .container .text {
        font-size: 14px;
        line-height: 20px;
    }
}

@media (max-width: 480px) {
    footer {
        padding: 40px 0;
        margin-top: 40px;
    }
    
    footer.site-footer .container {
        flex-direction: column;
        gap: 32px;
    }
    
    footer.site-footer .container .col {
        min-width: 100%;
        width: 100%;
    }
    
    footer.site-footer .logo a span {
        font-size: 18px;
    }
    
    footer.site-footer .logo a .logo-icon {
        width: 36px;
        height: 36px;
        background-size: 18px 16px;
    }
    
    footer.site-footer .container .text {
        font-size: 13px;
        line-height: 18px;
        padding-top: 12px;
    }
    
    footer.site-footer .footer-menu {
        gap: 16px;
    }
    
    footer.site-footer .footer-menu li a {
        font-size: 14px;
    }
    
    footer.site-footer .footer-menu li:first-child a {
        font-size: 16px;
    }
}