.container{
    max-width: 1200px;
    margin: 0px auto;
    padding: 0 20px;
}

#footer{
    padding: 60px 0 0 0;
    background: linear-gradient(135deg, #1B8540 0%, #148036 100%);
    color: #FFFFFF;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.1);
}

#logo-footer img{
    width: 30%;
    max-width: 180px;
    filter: brightness(0) invert(1);
}

.footer-row{
    display: flex;
    padding: 20px 0;
    flex-wrap: wrap;
    gap: 40px;
}

ul{
    padding: 0;
    list-style: none;
}

.footer-col{
    padding: 0 15px;
    list-style: none;
    flex: 1;
    min-width: 200px;
}

.footer-col li a{
    color: rgba(255, 255, 255, 0.9);
    line-height: 2;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
    font-size: 14px;
}

.footer-col li a:hover{
    color: #FFFFFF;
    transform: translateX(8px);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.footer-col h4{
    text-transform: uppercase;
    margin-bottom: 25px;
    position: relative;
    font-size: 16px;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: 1px;
}

.footer-col h4::before{
    content: '';
    position: absolute;
    left: 0;
    bottom: -12px;
    background: rgba(255, 255, 255, 0.4);
    height: 3px;
    box-sizing: border-box;
    width: 50px;
    border-radius: 2px;
}

.footer-col ul li:not(:last-child){
    margin-bottom: 12px;
}


/* Mobile: width < 700px */
@media (max-width: 700px) {
    .footer-col{
        padding: 0;
        margin: 0;
    }

    
    #logo-footer img{
        width: 100%;
    }
}