
body {
    margin: 0;
    font-family: 'Poppins', sans-serif; 
    line-height: 1.6;
    color: #333;
    background-color: #fff; 
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');


.sp-sustainability-section {
    background-color: #F0FBF3; 
    padding: 0 0; 
    overflow: hidden;
    min-height: 300px;
    
}

.sp-container {
    max-width: 1140px; 
    margin: 0 auto;
    padding: 0 15px; 
    display: grid;
    grid-template-columns: 1fr 1fr; 
    gap: 0; 
    align-items: stretch; 
}

/* Left Column Styles */
.sp-left-column {
    background-color: #F0FBF3;
    padding: 40px 50px 60px 50px; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: -100px;
    margin-top: 0;
}

.sp-sub-heading {
    color: #2E7D32; 
    font-size: 0.9em;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sp-main-heading {
    color: #1E2022;
    font-size: 2.8em;
    font-weight: 700;
    line-height: 1.2;
    margin-top: 0;
    margin-bottom: 25px;
}

.sp-description {
    color: #555D66; 
    font-size: 1em; 
    margin-bottom: 40px;
    max-width: 500px;
}

.sp-progress-bars-container {
    width: 100%;
}

.sp-progress-item {
    margin-bottom: 25px;
}

.sp-progress-label {
    font-size: 0.95em;
    font-weight: 600;
    color: #1E2022;
    margin-bottom: 8px;
}

.sp-progress-bar-wrapper {
    background-color: #E0F2E5; 
    border-radius: 20px;
    height: 18px; 
    overflow: hidden; 
    position: relative;
}

.sp-progress-bar {
    height: 100%;
    width: 0; 
    border-radius: 20px; 
    transition: width 1.2s cubic-bezier(0.25, 0.1, 0.25, 1);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 10px; 
    box-sizing: border-box;
}

.sp-progress-bar.sp-bar-orange {
    background-color: #F57C00;
}

.sp-progress-bar.sp-bar-green {
    background-color: #2E7D32; 
}

.sp-progress-percentage {
    font-size: 0.75em;
    font-weight: 600;
    color: white;
}
.sp-right-column {
    background-image: url('https://kits.krakenbox.net/breno/wp-content/uploads/sites/12/2025/03/pile-of-garbage-and-backhoe-at-waste-depot-rubbish-XHYS36X-1.jpg');
    background-repeat: no-repeat;
    background-size: 1000px;
    background-position: top center; 
    position: relative;
    min-height: 500px;
    margin-top: 0;
    margin-right: -130px;

}


.sp-overlay-card {
    position: absolute;
    bottom: 0;
    left: 0px; 
    background-color: #EF6C00; 
    color: white;
    padding: 40px;
    border-top-right-radius: 15px; 
    border-bottom-right-radius: 0;
    max-width: 400px; 
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.sp-card-icon {
    font-size: 3em; /* Size of the recycle icon */
    margin-bottom: 20px;
}

.sp-card-text {
    font-size: 1em;
    line-height: 1.7;
    margin-bottom: 25px;
    font-weight: 500;
}

.sp-card-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95em;
    transition: opacity 0.3s ease;
}

.sp-card-link:hover {
    opacity: 0.8;
}

.sp-card-link i {
    margin-left: 8px;
    font-size: 0.9em;
}

/* Basic Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.anim-fade-in-up {
    animation: fadeInUp 0.7s ease-out forwards;
    opacity: 0;
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}
.anim-fade-in-right {
    animation: fadeInRight 0.7s ease-out forwards;
    opacity: 0;
}


@media (max-width: 768px) {
    .sp-container {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }

    .sp-left-column {
        margin-left: 0;
        padding: 40px 0;
        order: 1;
        text-align: center;
        margin-top: 50px;
    }

    .sp-right-column {
        display: none; 
    }

    .sp-sub-heading {
        font-size: 0.85em;
    }

    .sp-main-heading {
        font-size: 1.9em;
        line-height: 1.3;
    }

    .sp-description {
        font-size: 0.95em;
        margin-bottom: 30px;
        max-width: 100%;
    }

    .sp-progress-label {
        font-size: 0.9em;
    }

    .sp-progress-percentage {
        font-size: 0.75em;
    }
}
