.site-footer {
    width: 100%;
    background: #fff;
    border-top: 1px solid #E8E8E8;
    padding: 50px 0 20px;
}

.footer-container {
    display: flex;
    flex-direction: column;
    max-width: 1142px;
    margin: 0 auto;
    gap: 20px;
}

.footer-content {
    display: flex;
    justify-content: space-evenly;
    align-items: flex-start;
    padding-bottom: 20px;
}

.footer-logo {
    width: auto;
    height: 90px;
}
.footer-logo-dsp {
    width: 200px;
    height: 140px;
}

.footer-navigation {
    display: flex;
    gap: 120px;
}

.site-footer .nav-links {
    display: flex;
    flex-direction: column;
    position: static;
    background: none;
    padding: 0;
    margin-top: 20px;
    gap: 12px;
}

.contact-info {
    text-align: left !important;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #E8E8E8;
}

.copyright {
    color: #666;
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-link {
    color: #666;
    text-decoration: none;
    font-size: 14px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    transition: color 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.footer-images {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

/* RESPONSIVE MEDIA QUERIES FOR FOOTER */
@media screen and (max-width: 1200px) {
    .footer-container {
        max-width: 940px;
        width: 90%;
    }

    .footer-navigation {
        gap: 80px;
    }
}

@media screen and (max-width: 992px) {
    .footer-container {
        max-width: 720px;
    }

    .footer-content {
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .footer-navigation {
        gap: 60px;
        margin-top: 20px;
    }
}

@media screen and (max-width: 768px) {
    .site-footer {
        padding: 40px 0 20px;
    }

    .footer-container {
        width: 95%;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-navigation {
        flex-direction: column;
        gap: 30px;
        width: 100%;
        margin-top: 30px;
    }

    .contact-info {
        text-align: center !important;
        align-items: center;
        margin-top: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media screen and (max-width: 576px) {
    .site-footer {
        padding: 30px 0 15px;
    }

    .footer-logo {
        height: 70px;
    }

    .footer-logo-dsp {
        width: 160px;
        height: 112px;
    }

    .nav-links a {
        font-size: 14px;
    }

    .footer-link {
        font-size: 12px;
    }

    .copyright {
        font-size: 12px;
    }

    .footer-links {
        gap: 12px;
    }
}