
.ecosystem-section {
    background: #FFFFFF;
    padding: 80px 0;
}

.ecosystem-container {
    width: 900px;
    max-width: 1400px;
    margin: 0 auto;
    /* padding: 0 40px; */
}

/* Grid Layout - Two Columns */
.ecosystem-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 25px;
    align-items: center;
}


.ecosystem-title-col h2 {
    font-size: 48px !important;
    line-height: 1.2;
    font-weight: 500;
    color: #3051E6;
    margin: 0;
}


.ecosystem-description p {
    font-size: 16px;
    line-height: 1.6;
    color: #000022;
    margin: 0;
}


@media screen and (max-width: 1024px) {
    .ecosystem-grid {
        gap: 60px;
    }
    
    .ecosystem-title-col h2 {
        font-size: 42px !important;
    }
}

@media screen and (max-width: 768px) {
    .ecosystem-section {
        padding: 20px 0;
    }
    
    .ecosystem-container {
        width: 100%; /* Override fixed width */
        padding: 0 20px;
    }
    
    .ecosystem-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .ecosystem-title-col {
        text-align: center;
    }
    
    .ecosystem-title-col h2 {
        font-size: 31px !important;
    }
    
    .ecosystem-description {
        text-align: center;
    }
    
    .ecosystem-description p {
        font-size: 15px;
    }
}