    /* Sustainability Page Styles */
    :root {
        --primary: #7ab55c;
        --primary-light: #a4d68c;
        --primary-dark: #5a9a3d;
        --secondary: #8b5a2b;
        --secondary-light: #a67c52;
        --cream: #fff8e1;
        --dark-green: #2e5d1c;
        --light-gray: #f5f5f5;
        --white: #ffffff;
        --black: #000000;
    }
    .hero *{
        overflow-x: hidden !important;
        overflow-y: hidden !important;
    }

    .hero-pattern {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: 
            radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 20%),
            radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 20%);
        z-index: 2;
    }

    .hero-shapes {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 3;
        overflow: hidden;
    }

    .hero-shape {
        position: absolute;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.05);
    }

    .hero-shape-1 {
        width: 300px;
        height: 300px;
        top: -100px;
        left: -100px;
    }

    .hero-shape-2 {
        width: 500px;
        height: 500px;
        bottom: -200px;
        right: -200px;
    }

    .hero-shape-3 {
        width: 200px;
        height: 200px;
        top: 30%;
        right: 10%;
    }
    /* Sustainable Sourcing Section - REDESIGNED WITHOUT IMAGES */
    .sustainable-sourcing {
        background: linear-gradient(135deg, var(--cream) 0%, #f8f9fa 100%);
        position: relative;
        padding: 100px 0;
        overflow: hidden;
    }

    .sustainable-sourcing::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%237ab55c' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        opacity: 0.8;
        z-index: 1;
    }

    .sourcing-floating-elements {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        overflow: hidden;
    }

    .floating-leaf {
        position: absolute;
        width: 60px;
        height: 60px;
        background: var(--primary-light);
        clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
        opacity: 0.1;
        animation: float 15s ease-in-out infinite;
    }

    .floating-leaf:nth-child(1) {
        top: 10%;
        left: 10%;
        animation-delay: 0s;
        transform: scale(1.2);
    }

    .floating-leaf:nth-child(2) {
        top: 20%;
        right: 15%;
        animation-delay: 3s;
        transform: scale(0.8);
    }

    .floating-leaf:nth-child(3) {
        bottom: 30%;
        left: 20%;
        animation-delay: 6s;
        transform: scale(1.5);
    }

    .floating-leaf:nth-child(4) {
        bottom: 10%;
        right: 10%;
        animation-delay: 9s;
        transform: scale(1.1);
    }

    @keyframes float {
        0%, 100% {
            transform: translateY(0px) rotate(0deg);
        }
        50% {
            transform: translateY(-20px) rotate(10deg);
        }
    }

    .sourcing-header {
        text-align: center;
        margin-bottom: 80px;
        position: relative;
        z-index: 2;
    }

    .sourcing-title {
        font-size: 3.5rem;
        font-weight: 700;
        margin-bottom: 20px;
        color: var(--primary-dark);
        position: relative;
        display: inline-block;
    }

    .sourcing-title::after {
        content: "";
        position: absolute;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
        height: 4px;
        background: linear-gradient(to right, var(--primary-dark), var(--primary-light));
        border-radius: 2px;
    }

    .sourcing-subtitle {
        font-size: 1.3rem;
        max-width: 800px;
        margin: 0 auto;
        color: #555;
        line-height: 1.6;
    }

    .sourcing-innovative-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 40px;
        position: relative;
        z-index: 2;
        margin-bottom: 60px;
    }

    .sourcing-innovation-card {
        background: rgba(255, 255, 255, 0.95);
        border-radius: 25px;
        padding: 40px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
        transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        position: relative;
        overflow: hidden;
        border: 1px solid rgba(122, 181, 92, 0.1);
    }

    .sourcing-innovation-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 6px;
        background: linear-gradient(90deg, var(--secondary), var(--secondary-light));
        z-index: 1;
    }

    .sourcing-innovation-card:hover {
        transform: translateY(-15px);
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
        background: rgba(255, 255, 255, 1);
    }

    .innovation-icon-container {
        width: 80px;
        height: 80px;
        margin: 0 auto 25px;
        background: linear-gradient(135deg, var(--primary-light), var(--primary));
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--white);
        font-size: 2rem;
        box-shadow: 0 10px 25px rgba(122, 181, 92, 0.3);
        transition: all 0.3s ease;
        position: relative;
    }

    .innovation-icon-container::after {
        content: "";
        position: absolute;
        top: -5px;
        left: -5px;
        right: -5px;
        bottom: -5px;
        background: linear-gradient(135deg, var(--primary-light), var(--primary));
        border-radius: 50%;
        z-index: -1;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .sourcing-innovation-card:hover .innovation-icon-container {
        transform: scale(1.1) rotate(10deg);
        box-shadow: 0 15px 35px rgba(122, 181, 92, 0.4);
    }

    .sourcing-innovation-card:hover .innovation-icon-container::after {
        opacity: 0.2;
    }

    .innovation-card-title {
        font-size: 1.6rem;
        font-weight: 600;
        margin-bottom: 20px;
        color: var(--secondary);
        text-align: center;
        position: relative;
        padding-bottom: 15px;
    }

    .innovation-card-title::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 50px;
        height: 3px;
        background: linear-gradient(to right, var(--primary-dark), var(--primary-light));
        border-radius: 2px;
        transition: width 0.3s ease;
    }

    .sourcing-innovation-card:hover .innovation-card-title::after {
        width: 80px;
    }

    .innovation-card-text {
        font-size: 1rem;
        line-height: 1.7;
        color: #555;
        text-align: center;
    }

    .sourcing-stats-section {
        background: rgba(255, 255, 255, 0.9);
        border-radius: 20px;
        padding: 50px;
        margin: 60px 0;
        position: relative;
        z-index: 2;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    }

    .stats-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 40px;
        text-align: center;
    }

    .stat-item {
        padding: 20px;
    }

    .stat-number {
        font-size: 3rem;
        font-weight: 700;
        color: var(--primary-dark);
        display: block;
        margin-bottom: 10px;
    }

    .stat-label {
        font-size: 1.1rem;
        color: #555;
        font-weight: 500;
    }

    .sourcing-bottom {
        text-align: center;
        position: relative;
        z-index: 2;
    }

    .sourcing-cta {
        display: inline-block;
        padding: 18px 40px;
        background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
        color: var(--white);
        font-size: 1.2rem;
        font-weight: 600;
        border-radius: 50px;
        text-decoration: none;
        box-shadow: 0 15px 30px rgba(122, 181, 92, 0.3);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .sourcing-cta::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.5s ease;
    }

    .sourcing-cta:hover {
        color: var(--white);
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(122, 181, 92, 0.4);
    }

    .sourcing-cta:hover::before {
        left: 100%;
    }

    .sourcing-cta i {
        margin-right: 12px;
    }

    /* Eco-Friendly Practices Grid */
    .eco-practices {
        background-color: var(--light-gray);
        position: relative;
        padding: 60px 0;
    }

    .eco-practices::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: 
            radial-gradient(circle at 10% 10%, rgba(42, 157, 143, 0.05) 0%, rgba(42, 157, 143, 0) 50%),
            radial-gradient(circle at 90% 90%, rgba(42, 157, 143, 0.05) 0%, rgba(42, 157, 143, 0) 50%);
        z-index: 1;
    }

    .eco-header {
        text-align: center;
        margin-bottom: 50px;
        position: relative;
        z-index: 2;
    }

    .eco-title {
        font-size: 3rem;
        font-weight: 700;
        margin-bottom: 20px;
        color: var(--primary-dark);
        position: relative;
        display: inline-block;
    }

    .eco-title::after {
        content: "";
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: linear-gradient(to right, var(--primary), var(--primary-light));
        border-radius: 2px;
    }

    .eco-subtitle {
        font-size: 1.2rem;
        max-width: 800px;
        margin: 0 auto;
        color: #555;
    }

    .eco-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        position: relative;
        z-index: 2;
    }

    .eco-card {
        background-color: var(--white);
        border-radius: 10px;
        overflow: hidden;
        transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        position: relative;
        z-index: 1;
        border-top: 4px solid var(--primary-dark);
    }

    .eco-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(46, 206, 67, 0.03) 0%, rgba(87, 230, 130, 0) 100%);
        z-index: -1;
    }

    .eco-card:hover {
        transform: translateY(-15px);

    }

    .eco-card-icon {
        width: 80px;
        height: 80px;
        margin: 30px auto 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, var(--primary-light), var(--primary));
        border-radius: 50%;
        color: var(--white);
        font-size: 2rem;
        box-shadow: 0 10px 20px var(--primary-light);
        transition: all 0.3s ease;
    }

    .eco-card:hover .eco-card-icon {
        transform: scale(1.1) rotate(10deg);
        box-shadow: 0 15px 30px var(--primary-light);
    }

    .eco-card-content {
        padding: 0 30px 30px;
        text-align: center;
    }

    .eco-card-title {
        font-size: 1.5rem;
        font-weight: 600;
        margin-bottom: 15px;
        color: var(--secondary);
    }

    .eco-card-text {
        font-size: 1rem;
        line-height: 1.6;
        color: #555;
    }

    /* Energy & Water Management Sections - REDESIGNED */
    .energy-section {
        background-color: var(--white);
        position: relative;
        padding: 60px 0;
    }

    .energy-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: 
            radial-gradient(circle at 90% 10%, rgba(122, 181, 92, 0.05) 0%, rgba(122, 181, 92, 0) 50%),
            radial-gradient(circle at 10% 90%, rgba(122, 181, 92, 0.05) 0%, rgba(122, 181, 92, 0) 50%);
        z-index: 1;
    }

    .water-section {
        background-color: var(--white);
        position: relative;
        padding: 60px 0;
    }

    .water-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: 
            radial-gradient(circle at 90% 10%, rgba(122, 181, 92, 0.05) 0%, rgba(122, 181, 92, 0) 50%),
            radial-gradient(circle at 10% 90%, rgba(122, 181, 92, 0.05) 0%, rgba(122, 181, 92, 0) 50%);
        z-index: 1;
    }

    .resource-container {
        position: relative;
        z-index: 2;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .resource-header {
        text-align: center;
        margin-bottom: 50px;
    }

    .resource-title {
        font-size: 3rem;
        font-weight: 700;
        margin-bottom: 20px;
        position: relative;
        display: inline-block;
    }

    .energy-title {
        color: var(--primary-dark);
    }

    .water-title {
        color: var(--primary-dark);
    }

    .resource-title::after {
        content: "";
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        border-radius: 2px;
    }

    .energy-title::after {
        background: linear-gradient(to right, var(--primary), var(--primary-light));
    }

    .water-title::after {
        background: linear-gradient(to right, var(--primary), var(--primary-light));
    }

    .resource-subtitle {
        font-size: 1.2rem;
        max-width: 800px;
        margin: 0 auto;
        color: var(--secondary);
    }

    .resource-content {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .resource-image-text {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    @media (min-width: 768px) {
        .resource-image-text {
            flex-direction: row;
            align-items: center;
        }
        
        .resource-image {
            flex: 1;
        }
        
        .resource-text-container {
            flex: 1;
        }
    }

    .resource-image {
        height: 400px;
        overflow: hidden;
        border-radius: 10px;
        box-shadow: 0 15px 30px var(--secondary);
    }

    .resource-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.7s ease;
    }

    .resource-image:hover img {
        transform: scale(1.05);
    }

    .resource-text {
        font-size: 1.1rem;
        line-height: 1.8;
        color: #555;
        margin-bottom: 20px;
    }

    .resource-points {
        margin-top: 30px;
    }

    .resource-point {
        display: flex;
        align-items: flex-start;
        margin-bottom: 20px;
        padding: 15px;
        border-radius: 10px;
        transition: all 0.3s ease;
    }

    .energy-point {
        background-color: rgba(122, 181, 92, 0.05);
    }

    .energy-point:hover {
        background-color: rgba(122, 181, 92, 0.1);
        transform: translateX(10px);
    }

    .water-point {
        background-color: rgba(122, 181, 92, 0.05);
    }

    .water-point:hover {
        background-color: rgba(122, 181, 92, 0.1);
        transform: translateX(10px);
    }

    .point-icon {
        min-width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--white);
        margin-right: 15px;
    }

    .energy-icon {
        background: linear-gradient(135deg, var(--primary-light), var(--primary));
        box-shadow: 0 5px 15px rgba(122, 181, 92, 0.2);
    }

    .water-icon {
        background: linear-gradient(135deg, var(--primary-light), var(--primary));
        box-shadow: 0 5px 15px rgba(42, 157, 143, 0.2);
    }

    .point-text {
        font-size: 1rem;
        line-height: 1.6;
        color: #555;
    }

    /* Carbon Footprint Section */
    .carbon-footprint {
        background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
        color: var(--white);
        position: relative;
        overflow: hidden;
        padding: 60px 0;
    }

    .carbon-pattern {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: 
            radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 20%),
            radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 20%);
        z-index: 1;
    }

    .carbon-container {
        position: relative;
        z-index: 2;
    }

    .carbon-header {
        text-align: center;
        margin-bottom: 50px;
    }

    .carbon-title {
        font-size: 3rem;
        font-weight: 700;
        margin-bottom: 20px;
        color: var(--white);
        position: relative;
        display: inline-block;
    }

    .carbon-title::after {
        content: "";
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: var(--white);
        border-radius: 2px;
    }

    .carbon-subtitle {
        font-size: 1.2rem;
        max-width: 800px;
        margin: 0 auto;
    }

    .carbon-content {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    @media (min-width: 768px) {
        .carbon-content {
            flex-direction: row;
            align-items: center;
            gap: 60px;
        }
        
        .carbon-image {
            flex: 1;
        }
        
        .carbon-text-container {
            flex: 1;
        }
    }
    @media (max-width: 767px) {
  .carbon-content {
    padding: 0 15px;
    box-sizing: border-box;
  }

  .carbon-image {
    width: 100%;
    padding: 0;
    margin: 0 auto;
  }

  .carbon-text-container {
    padding: 0;
  }
}
 .carbon-text-container{
    margin-right: 1%;
 }
    .carbon-image {
    width: 100%;
    max-width: 500px; /* or whatever fits your layout */
    height: auto;
    overflow: hidden;
    border-radius: 10px;
    margin-left: 1%;
    box-shadow: 0 20px 40px var(--black);
}

.carbon-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

    .carbon-image:hover img {
        transform: scale(1.05);
    }

    .carbon-text {
        font-size: 1.1rem;
        line-height: 1.8;
    }

    .carbon-points {
        margin-top: 30px;
    }

    .carbon-point {
        display: flex;
        align-items: flex-start;
        margin-bottom: 20px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        padding: 20px;
        transition: all 0.3s ease;
    }

    .carbon-point:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: translateX(10px);
    }

    .carbon-point-icon {
        min-width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 15px;
    }

    .carbon-point-text {
        font-size: 1rem;
        line-height: 1.6;
    }

    /* Call to Action Section */
    .sustainability-cta {
        background-color: var(--secondary);
        color: var(--white);
        padding: 80px 0;
        position: relative;
        overflow: hidden;
    }

    .cta-pattern {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: 
            radial-gradient(circle at 10% 10%, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 30%),
            radial-gradient(circle at 90% 90%, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 30%);
        z-index: 1;
    }

    .cta-container {
        position: relative;
        z-index: 2;
        text-align: center;
        max-width: 800px;
        margin: 0 auto;
    }
    .cta-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--white); /* Change underline to white */
    border-radius: 2px;
}

    .cta-title {
        font-size: 3rem;
        font-weight: 700;
        margin-bottom: 20px;
    }

    .cta-text {
        font-size: 1.2rem;
        line-height: 1.8;
        margin-bottom: 40px;
    }

    .cta-buttons {
        display: flex;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }

    .cta-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 15px 30px;
        border-radius: 50px;
        font-size: 1.1rem;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .cta-btn-primary {
        background-color: var(--white);
        color: var(--secondary-light);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .cta-btn-primary:hover {
        color: var(--secondary-light);
        background-color: var(--cream);
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    }

    .cta-btn-secondary {
        background-color: transparent;
        color: var(--white);
        border: 2px solid var(--white);
    }

    .cta-btn-secondary:hover {
        color: var(--white);
        background-color: rgba(255, 255, 255, 0.1);
        transform: translateY(-5px);
    }

    .cta-btn i {
        margin-right: 10px;
    }

    /* Animation Classes */
    .fade-up {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.8s ease, transform 0.8s ease;
    }

    .fade-up.active {
        opacity: 1;
        transform: translateY(0);
    }

    .fade-in {
        opacity: 0;
        transition: opacity 0.8s ease;
    }

    .fade-in.active {
        opacity: 1;
    }

    .slide-left {
        opacity: 0;
        transform: translateX(-50px);
        transition: opacity 0.8s ease, transform 0.8s ease;
    }

    .slide-left.active {
        opacity: 1;
        transform: translateX(0);
    }

    .slide-right {
        opacity: 0;
        transform: translateX(50px);
        transition: opacity 0.8s ease, transform 0.8s ease;
    }

    .slide-right.active {
        opacity: 1;
        transform: translateX(0);
    }

    .scale-up {
        opacity: 0;
        transform: scale(0.8);
        transition: opacity 0.8s ease, transform 0.8s ease;
    }

    .scale-up.active {
        opacity: 1;
        transform: scale(1);
    }

    /* Responsive Styles */
    @media (max-width: 992px) {
        .sustainability-section,
        .energy-section,
        .water-section {
            padding: 50px 0;
        }

        .sourcing-title,
        .eco-title,
        .resource-title,
        .carbon-title,
        .cta-title {
            font-size: 2.5rem;
        }

        .sourcing-innovative-grid {
            grid-template-columns: 1fr;
            gap: 30px;
        }
        
        .sourcing-innovation-card {
            max-width: 500px;
            margin: 0 auto;
        }
    }

    @media (max-width: 768px) {
        .sustainability-section,
        .energy-section,
        .water-section {
            padding: 40px 0;
        }

        .sourcing-title,
        .eco-title,
        .resource-title,
        .carbon-title,
        .cta-title {
            font-size: 2rem;
        }

        .eco-grid {
            grid-template-columns: 1fr;
        }
        
        .cta-buttons {
            flex-direction: column;
            align-items: center;
        }
        
        .resource-image {
            height: 300px;
        }

        .sourcing-innovative-grid {
            grid-template-columns: 1fr;
        }

        .stats-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 480px) {
        .resource-image{
            height: 250px;
        }
        
        .resource-point,
        .carbon-point {
            padding: 15px;
        }
        
        .point-icon,
        .carbon-point-icon {
            min-width: 35px;
            height: 35px;
            font-size: 0.9rem;
        }

        .stats-grid {
            grid-template-columns: 1fr;
        }

        .stat-number {
            font-size: 2.5rem;
        }
    }
    @media (max-width: 768px) {
    .d-none-mobile {
        display: none !important;
    }
}
.hero-content.sustainability-no-text{
  padding: 130px 0;
}
.hero-content{
    padding: 10px;
}