/* --- Modern Blog Layout with First/Last Sections Without Images --- */
.blog-section {
    padding: 60px 0;
    background: #f9fbfd;
}

.eco-3d-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    padding: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.eco-3d-header {
    text-align: center;
    margin-bottom: 40px;
}

.eco-3d-logo {
    width: 100px;
    height: auto;
    margin-bottom: 20px;
}

.eco-3d-heading {
    font-size: 2.2rem;
    color: #017a25;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.eco-3d-divider {
    height: 3px;
    width: 80px;
    background: linear-gradient(90deg, #017a25, #00b894);
    margin: 0 auto 30px;
    border-radius: 3px;
}

.eco-flat-section {
    margin-bottom: 50px;
    animation: fadeInUp 0.6s ease-out forwards;
}

.eco-flat-row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
}

.eco-flat-img-col {
    flex: 1;
    min-width: 300px;
}

.eco-flat-content-col {
    flex: 1;
    min-width: 300px;
}

/* Full width content for no-image sections */
.no-image-section .eco-flat-content-col {
    flex: 1 1 100%;
    max-width: 100%;
    text-align: center;
}

.no-image-section .eco-flat-divider {
    margin-left: auto;
    margin-right: auto;
}

.eco-flat-img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.eco-flat-title {
    font-size: 1.8rem;
    color: #017a25;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.3;
}

.eco-flat-divider {
    height: 2px;
    width: 50px;
    background: #00b894;
    margin-bottom: 20px;
    border-radius: 2px;
}

.eco-flat-section p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.eco-flat-list {
    padding-left: 20px;
    margin: 20px 0;
}

.eco-flat-list li {
    margin-bottom: 12px;
    line-height: 1.6;
    color: #555;
    font-size: 1.05rem;
}

.eco-flat-list li b {
    color: #017a25;
}

/* Animation for section entrance */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .eco-3d-card {
        padding: 30px 20px;
    }
    
    .eco-3d-heading {
        font-size: 1.8rem;
    }
    
    .eco-flat-title {
        font-size: 1.5rem;
    }
    
    .eco-flat-row {
        flex-direction: column;
    }
    
    .eco-flat-img-col, 
    .eco-flat-content-col {
        min-width: 100%;
    }
    
    .no-image-section .eco-flat-content-col {
        text-align: left;
    }
}