.site-footer{

    background:#faf7f1;

    border-radius:30px;

    padding:60px;

    margin-top:100px;
}

.footer-grid{

    display:grid;

    grid-template-columns:
    1.4fr
    1fr
    1fr
    1.4fr;

    gap:50px;
}

.footer-brand img{

    width:60px;
    margin-bottom:20px;
}

.footer-brand h3{

    font-size:24px;
    margin-bottom:15px;
}

.footer-brand p{

    color:#666;
    line-height:1.8;
    margin-bottom:25px;
}

.footer-socials{

    display:flex;
    gap:15px;
}

.footer-socials a{

    color:#444;
    text-decoration:none;
}

.footer-links h4,
.footer-commitment h4,
.footer-newsletter h4{

    margin-bottom:20px;
}

.footer-links ul,
.footer-commitment ul{

    list-style:none;
    padding:0;
    margin:0;
}

.footer-links li,
.footer-commitment li{

    margin-bottom:14px;
}

.footer-links a{

    color:#444;
    text-decoration:none;
}

.footer-newsletter p{

    color:#666;
    line-height:1.8;
    margin-bottom:20px;
}

.footer-newsletter form{

    display:flex;
    margin-bottom:20px;
}

.footer-newsletter input{

    flex:1;

    border:none;
    background:#fff;

    padding:14px;

    border-radius:10px 0 0 10px;
}

.footer-newsletter button{

    width:60px;

    border:none;

    background:#4d7343;
    color:#fff;

    border-radius:0 10px 10px 0;

    cursor:pointer;
}

.footer-policy{

    display:flex;
    gap:20px;
}

.footer-policy a{

    color:#666;
    text-decoration:none;
}

.footer-bottom{

    margin-top:40px;
    padding-top:20px;

    border-top:1px solid #e4ddd0;

    color:#777;
}

@media(max-width:992px){

    .footer-grid{

        grid-template-columns:1fr 1fr;
    }

}

@media(max-width:768px){

    .site-footer{

        padding:30px;
    }

    .footer-grid{

        grid-template-columns:1fr;
    }

}
.footer-email-btn{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:8px 12px;
    background:#5E7E46;
    color:#fff !important;
    text-decoration:none;
    border-radius:8px;
    font-weight:600;
    transition:all .3s ease;
}

.footer-email-btn:hover{
    background:#35502e;
    transform:translateY(-2px);
}

.footer-email-btn i{
    font-size:16px;
}