    
        .report-container {
            max-width: 1200px;
            margin: 0 auto;
            background-color: white;
            /* Using hardcoded colors (Dark Green #0A2814, Accent Yellow #FFCC00) */
            box-shadow: 0 1px 3px 0 rgba(10, 40, 20, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); 
            border-radius: 0.75rem; 
            border: 1px solid rgba(10, 40, 20, 0.1); 
            padding: 1rem; 
            font-family: 'Inter', sans-serif;
            color: #0A2814; 
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        .report-content {
            padding: 1rem;
            display: flex;
            flex-direction: column;
            gap: 3rem;
        }
        
        /* --- Common Header Bar Styles (Mobile Default) --- */
        .report-header-bar, .section-header-bar {
            background-color: #0A2814; 
            padding: 1rem 1.5rem;
            border-radius: 0.5rem 0.5rem 0 0;
            border-bottom: 5px solid #FFCC00; 
            margin-bottom: 1rem;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .report-header-bar::after, .section-header-bar::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.1) 50%, transparent 60%);
            pointer-events: none;
        }
        
        /* **TITLE STYLING IMPROVEMENT** */
        .header-title, .section-title {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.25rem; /* Increased size for mobile impact */
            font-weight: 800; 
            letter-spacing: 0.05em; 
            text-transform: uppercase;
            color: #FFCC00;
            display: flex;
            align-items: center;
            text-align: center;
            line-height: 1.2;
        }
        
        .header-title .header-icon {
            color: white;
            margin-right: 0.5rem;
        }

        /* --- Paragraph and Text Styles --- */
        .content-paragraph {
            color: #0A2814;
            line-height: 1.6;
            font-size: 1.125rem; 
            text-align: justify;
        }
        
        /* --- Commitment Title Styles --- */
        .commitment-title {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.5rem; 
            font-weight: 900; 
            color: #0A2814;
            text-align: center;
            margin-bottom: 1.5rem;
            display: inline-block;
        }
        
        .underline-yellow {
            text-decoration: underline;
            text-decoration-color: #FFCC00;
            text-decoration-thickness: 4px;
            text-underline-offset: 8px;
        }
        
        /* ---------------------------------------------------------------------- */
        /* --- Image Grid and Overlay --- */
        /* ---------------------------------------------------------------------- */
        .agriculture-section {
            padding-top: 1rem;
        }
        
        .grid-wrapper {
            position: relative;
            padding-bottom: 200%; /* Default to tall 1x4 layout on mobile */
            width: 100%;
            overflow: hidden;
            border-radius: 0.75rem;
            box-shadow: 0 20px 25px -5p x rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
            border: 4px solid #0A2814;
        }

        .plant-grid {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: grid;
            grid-template-columns: 1fr; /* Default to 1 column on mobile */
            grid-template-rows: repeat(4, 1fr); /* 4 rows for 4 images */
            gap: 0;
        }

        .grid-quadrant {
            overflow: hidden; 
        }

        .grid-quadrant img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
            filter: brightness(0.8) contrast(1.1);
        }

        .grid-quadrant:hover img {
            transform: scale(1.05); 
            filter: brightness(0.9) contrast(1); 
        }

        .grid-overlay {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 10;
            width: 60%;
            max-width: 300px; 
            padding: 0.5rem; 
        }

        .overlay-card-box {
            background-color: rgba(10, 40, 20, 0.85);
            padding: 1rem; 
            border-radius: 1.5rem; 
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1); 
            border: 2px solid #FFCC00;
            text-align: center;
            backdrop-filter: blur(2px); 
        }

        .card-subtitle {
            font-family: 'Montserrat', sans-serif;
            font-size: 0.9rem; 
            font-weight: 700; 
            text-transform: uppercase;
            letter-spacing: 0.1em; 
            color: #FFCC00;
            margin-bottom: 0.5rem; 
        }

        .card-title {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.2rem; 
            font-weight: 900; 
            color: white;
            line-height: 1.25; 
        }
        
        .card-title .yellow-highlight {
            color: #FFCC00; 
        }

        .card-divider {
            width: 3rem; 
            height: 0.2rem; 
            background-color: #FFCC00;
            margin: 0.75rem auto 0 auto; 
            border-radius: 9999px; 
        }
        
        /* --- Masindi Project Section Styles --- */
        .project-content {
            display: flex;
            flex-direction: column; 
            gap: 1.5rem;
            align-items: flex-start;
        }
        
        .text-column {
            width: 100%;
        }
        
        /* ---------------------------------------------------------------------- */
        /* --- ECONOMIC PROJECTION SUMMARY (Table Styles) --- */
        /* ---------------------------------------------------------------------- */

        .projection-summary-section {
            margin-top: 3rem;
        }
        
        .projection-intro-text {
            font-size: 1.125rem; 
            line-height: 1.6; 
            margin-bottom: 1rem;
            text-align: justify;
            color: #0A2814;
        }
        
        /* Base table styling (Mobile card view changes this) */
        .projection-table {
            border: 1px solid rgba(10, 40, 20, 0.1);
            border-radius: 0.5rem;
            overflow: hidden;
            margin-top: 1.5rem;
            width: 100%;
        }

        /* Desktop Header Row (Grid) */
        .table-header-row {
            display: none;
            background-color: rgba(255, 204, 0, 0.05);
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            text-transform: uppercase;
            color: #0A2814;
            align-items: center;
        }

        /* Row Group - Desktop Grid setup */
        .table-row-group, .table-header-row {
            display: grid;
            grid-template-columns: 25% 20% 30% 25%;
            border-bottom: 1px solid rgba(10, 40, 20, 0.1);
        }

        .table-row-group:last-child {
            border-bottom: none;
        }

        .table-cell {
            padding: 1rem;
            border-right: 1px solid rgba(10, 40, 20, 0.1);
            line-height: 1.4;
            font-size: 0.95rem;
            color: #0A2814;
            text-align: left;
        }

        .pillar-cell {
            font-weight: 700;
            background-color: rgba(255, 204, 0, 0.05);
            color: #0A2814;
            display: flex;
            align-items: center;
        }
        
        .pillar-cell:hover {
            background-color: rgba(255, 204, 0, 0.1);
        }

        /* ---------------------------------------------------------------------- */
        /* --- Agriculture Details Section --- */
        /* ---------------------------------------------------------------------- */
        .agriculture-details-section {
            margin-top: 3rem;
            padding: 2rem 1rem;
            background-color: rgba(255, 204, 0, 0.05);
            border-radius: 0.75rem;
            border: 1px solid rgba(10, 40, 20, 0.1);
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
        }

        .agriculture-header-box {
            background-color: #0A2814;
            padding: 1.5rem;
            border-radius: 0.5rem;
            margin-bottom: 1.5rem;
            border-left: 5px solid #FFCC00;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }
        
        .agriculture-main-title {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.5rem;
            font-weight: 800;
            color: white;
            line-height: 1.2;
        }

        /* Image Column Styling for end of section placement */
        .agriculture-image-col {
            width: 100%;
            /* Centering the image content within the column for a clean look */
            display: flex; 
            justify-content: center;
            align-items: center;
            margin-top: 1.5rem; /* Add space above it */
        }
        
        /* **IMAGE FIT FIX** */
        .agriculture-image-col img {
            width: 100%;
            max-width: 500px; /* Max width on desktop */
            height: auto;
            display: block; 
            border-radius: 0.5rem;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            border: 4px solid #FFCC00;
            transition: transform 0.3s ease;
        }

        .agriculture-image-col img:hover {
            transform: scale(1.02);
        }
        
        /* ---------------------------------------------------------------------- */
        /* --- Final Callout/Footer Section --- */
        /* ---------------------------------------------------------------------- */
        /* REMOVED .final-callout STYLES */
        
        @media (min-width: 768px) {
            /* REMOVED .final-callout p STYLES */
        }


        /* --- Media Queries (Responsiveness) --- */
        @media (min-width: 768px) {
            
            .report-container {
                padding: 2rem; 
            }
            /* Upscale header fonts for desktop */
            .header-title, .section-title {
                font-size: 1.875rem; 
            }
            .commitment-title {
                font-size: 2.25rem; 
            }
            .card-title {
                font-size: 1.6rem; 
            }
            .project-content {
                flex-direction: row;
            }
            .text-column {
                border-left: 4px solid #FFCC00;
                padding-left: 1.5rem; 
            }
            
            /* 2x2 Image Grid on Desktop */
            .grid-wrapper {
                padding-bottom: 50%; 
            }
            .plant-grid {
                grid-template-columns: repeat(2, 1fr);
                grid-template-rows: repeat(2, 1fr); 
            }
            
            /* Desktop Table Styles */
            .table-header-row {
                display: grid; 
            }

            .agriculture-main-title {
                font-size: 2.25rem;
            }
            
            /* Adjust image centering and max width for desktop */
            .agriculture-image-col {
                 margin-top: 2rem;
            }

        }
        
        @media (max-width: 767px) {
            .commitment-title br {
                display: none; 
            }
            
            /* **TITLE STYLING IMPROVEMENT** (Ensuring very narrow screens still look good) */
            @media (max-width: 480px) {
                .header-title, .section-title {
                    font-size: 1.1rem; /* Slightly smaller for very narrow screens */
                }
            }

            /* Mobile Table Card View */
            .projection-table {
                border: none;
                box-shadow: none;
            }
            .table-header-row {
                display: none;
            }
            .table-row-group {
                display: block;
                margin-bottom: 1.5rem;
                border: 2px solid rgba(10, 40, 20, 0.3);
                border-radius: 0.75rem;
                background-color: white;
                box-shadow: 0 4px 6px rgba(0,0,0,0.05);
            }
            .table-cell {
                display: block;
                width: 100%;
                border-right: none !important;
                border-bottom: 1px dashed rgba(10, 40, 20, 0.1);
                padding: 0.75rem 1rem;
            }
            .table-cell:last-child {
                border-bottom: none;
            }
            
            /* Show data label before content (Card Headers) */
            .table-cell::before {
                content: attr(data-label) ": ";
                font-weight: 700;
                color: #0A2814;
                display: block;
                margin-bottom: 0.25rem;
                font-size: 0.85rem;
                text-transform: uppercase;
            }
            
            /* Specific styles for the pillar cell (Main Mobile Card Header) */
            .pillar-cell {
                background-color: #0A2814;
                color: white;
                font-size: 1.1rem;
                padding: 1rem;
                border-radius: 0.75rem 0.75rem 0 0;
                border-bottom: 5px solid #FFCC00;
                font-weight: 800;
                text-transform: uppercase;
            }
            .pillar-cell::before {
                content: none;
            }
        }
        
          /* --- BACKGROUND VISUALS (BLURRED IMAGES) --- */
        .background-visuals {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            /* min-height must cover the total content height, not just the viewport */
            height: 100%; 
            z-index: -1; /* Crucial: ensures it's behind the report container */
            pointer-events: none; /* Allows interaction with elements on top */
        }