.site-footer {
    background-color: #111111;
    color: #fff;
    padding: 40px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    position:relative;
    width: 100%;
    bottom: 0;
    left: 0;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    padding: 0 56px;
}

.footer-logo img {
    width: 200px;
    margin-bottom: 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
}

.footer-categories, .footer-about {
    width: 30%;
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    gap: 24px;
    padding-bottom: 36px;
    
}

.footer-categories ul {
    list-style: none;
    padding: 0;
}

.footer-categories li {
    margin-bottom: 10px;
}

.footer-categories a {
    font-size: 16px;
    color: #fff;
    text-decoration: none;
}

.footer-categories a:hover {
    color: red;
}

.footer-about p {
    font-size: 16px;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding: 20px 16px;
    border-top: 1px solid #444;
    width: 100%;
}

.footer-bottom a {
    color: #fff;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: red;
}

@media (max-width: 768px) {
    .footer-container {
        
        padding: 0;
    }
    .footer-categories, .footer-about {
        width: 100%;
    }

    .footer-logo img {
        width: 120px;
    }

    .footer-container {
        width: 90%;
    }
}
