.elementor-6211 .elementor-element.elementor-element-45cb1ff{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;}/* Start custom CSS *//* Note: The styles are scoped to the '.why-eco-fresh-container' class to avoid interfering with other Elementor styles. */

/* Main container for a wide page layout */
.why-eco-fresh-container {
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    color: #343a40;
    width: 100%;
    box-sizing: border-box; /* Ensures padding is included in the width */
    padding: 2rem 5%; /* Use percentage for responsive side padding */
}

/* Headings */
.why-eco-fresh-container h1, 
.why-eco-fresh-container h2 {
    font-weight: 700;
    color: #03B162; /* Brand green */
    margin-top: 1.5em;
    margin-bottom: 0.8em;
    text-align: center;
}

.why-eco-fresh-container h1 {
    font-size: 2.5rem;
}

.why-eco-fresh-container h2 {
    font-size: 2rem;
    border-top: 2px solid #e9ecef;
    padding-top: 1.2em;
    max-width: 900px; /* Give headings a max-width as well */
    margin-left: auto;
    margin-right: auto;
}

/* Paragraphs (constrained for readability) */
.why-eco-fresh-container p {
    font-size: 1.1rem;
    margin-bottom: 1.5em;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Images */
.why-eco-fresh-container .image-wrapper {
    margin: 2.5rem 0;
}

.why-eco-fresh-container .image-wrapper img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 50%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Statistics Section (constrained for readability) */
.why-eco-fresh-container .stats-container {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin: 2rem auto; /* Centered the container */
    max-width: 900px; /* Added max-width */
}

.why-eco-fresh-container .stat-box {
    background-color: #e6f7ee;
    border: 2px solid #b8e6d1;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    flex: 1;
}

.why-eco-fresh-container .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #03B162;
}

.why-eco-fresh-container .stat-label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: #555;
    margin-top: 0.5rem;
}

/* Unordered List (constrained for readability) */
.why-eco-fresh-container ul {
    list-style-type: '✔ '; /* Custom bullet point */
    padding-left: 1.5rem;
    font-size: 1.1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.why-eco-fresh-container li {
    padding-left: 0.8rem;
    margin-bottom: 1rem;
}

/* Final Paragraph Styling */
.why-eco-fresh-container .final-paragraph {
    font-weight: 600;
    text-align: center;
    font-size: 1.2rem;
    color: #333;
}

/* Responsive styles for smaller screens */
@media (max-width: 600px) {
    .why-eco-fresh-container .stats-container {
        flex-direction: column;
    }
    .why-eco-fresh-container h1 {
        font-size: 2rem;
    }
    .why-eco-fresh-container h2 {
        font-size: 1.75rem;
    }
    .why-eco-fresh-container .image-wrapper img {
        max-width: 80%; /* Adjust for smaller screens */
    }
}/* End custom CSS */