.dn-ecosystem {
    padding-top: 0;
    padding-bottom: 50px;
}

.section-title-eco {
    font-size: 19px;
    margin-bottom: 15px;
    text-align: left;
    color: #AD0042;
    font-style: italic;
    font-weight: 500;
        border-top: 1px solid #aaaa;
    margin-top: 30px;
    padding-top: 30px;
    display: flex;
    align-items: end;
    justify-content: space-between;
}

.logo-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.logo-item {
    width: 120px;
    height: 60px;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    padding: 0 15px;
}

.logo-item:hover {
    transform: translateY(-5px);
}

.logo-item a {
    display: block;
    width: 100%;
    height: 100%;
}

.logo-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.footer-logo-2 {
    margin-top: 25px;
}

.footer-last {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
@media (max-width: 768px) {
    .logo-item {
        width: 165px;
    }

    .dn-ecosystem {
        padding-bottom: 0;
    }

    .footer-logo-2 {
        display: none;
    }

    .section-title-eco {
        margin-top: 20px;
    }

    .col-certificate {
        margin-top: 20px;
    }


    .logo-item {
        padding: 8px 15px;
    }

    .logo-list {
        margin-bottom: 20px;
    }

    .footer-last {
        display: block;
        margin-bottom: 120px;
    }


}