   /* --- 1. Font Import --- */
        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

        /* --- 2. Base Styling and Typography --- */
        body {
            background-color: #f7f7f7;
            /* Ensure colors print correctly for the whole document */
            -webkit-print-color-adjust: exact;
            print-color-adjust: exact; 
        }

        /* Applying base styles to the main content container (section) */
        .main-content-section {
            font-family: 'Inter', sans-serif;
            color: #0A2814; /* Used brand-dark */
           
        }

        .report-card {
            
            margin: 0 auto;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            background-color: #e8f5e9; /* Used highlight-bg */
            border-radius: 0.75rem; /* Used radius-xl */
            /* FIX: Ensure child elements don't overflow the rounded corners */
            overflow: hidden; 
            margin-bottom: 1.5rem;
            /* Ensure background prints */
            -webkit-print-color-adjust: exact;
            print-color-adjust: exact;
        }
        
        /* --- 3. Header and Content Sections --- */
        .card-header {
            background-color: #0A2814; /* Used brand-dark */
            padding: 1rem 1.5rem;
            /* Border radius matches the parent card's top corners */
            border-top-left-radius: 0.75rem; 
            border-top-right-radius: 0.75rem;
            border-bottom: 4px solid #FFCC00; /* Used brand-yellow */
            margin-bottom: 1.5rem;
            /* Ensure background prints */
            -webkit-print-color-adjust: exact;
            print-color-adjust: exact;
        }

        .card-header h1 {
            /* FIX: Force white text with !important for export scenarios */
            color: #ffffff !important; 
            font-size: 1.5rem;
            font-weight: 700;
            letter-spacing: -0.025em;
            margin: 0;
        }
        @media (min-width: 640px) {
            .card-header h1 { font-size: 1.875rem; }
        }

        .card-content {
            padding: 0 1rem 2rem 1rem;
        }
        
        .card-content p {
            text-align: justify;
        }
        
        /* Set explicit margin for the introductory paragraph inside Card 1 & 3 */
        .card-content > p:first-of-type {
            margin-bottom: 2rem; /* Adjusted for better spacing below intro */
        }
        
        @media (min-width: 640px) {
            .card-content { padding: 0 1.5rem 2.5rem 1.5rem; }
        }
        @media (min-width: 1024px) {
            .card-content { padding: 0 2rem 3rem 2rem; }
        }

        /* --- 4. Sub-Headers (Pill shape) --- */
        .sub-header {
            display: inline-block;
            padding: 0.25rem 0.75rem;
            margin-bottom: 0.75rem;
            font-size: 1.125rem;
            font-weight: 700;
            background-color: #c8e6c9; /* Used subheader-bg */
            color: #0A2814; /* Used brand-dark */
            border-top-left-radius: 0.75rem;
            border-bottom-left-radius: 0.75rem;
            border-top-right-radius: 9999px;
            border-bottom-right-radius: 9999px;
            box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
            cursor: pointer;
            transition: transform 0.3s ease, color 0.3s ease;
            /* Ensure background prints */
            -webkit-print-color-adjust: exact;
            print-color-adjust: exact;
        }

        .sub-header:hover {
            transform: scale(1.02);
            color: #FFCC00; /* Used brand-yellow */
        }

        /* --- 5. Text and Accent Colors --- */
        .key-figure {
            font-weight: 700;
            color: #FFCC00; /* Used brand-yellow */
            /* Ensure color prints */
            -webkit-print-color-adjust: exact;
            print-color-adjust: exact;
        }
        .text-dark {
            font-weight: 700;
            color: #0A2814; /* Used brand-dark */
        }

        /* --- 6. Carousel Styles --- */
        .carousel-container {
            position: relative;
            width: 100%;
            aspect-ratio: 16 / 9;
            margin-bottom: 2rem;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.06);
            border-radius: 0.75rem; /* Used radius-xl */
            overflow: hidden;
            border: 1px solid #d1d5db;
        }

        .carousel-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: #e5e7eb;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 1.5s ease-in-out; 
            font-size: 1.5rem;
            font-weight: 500;
        }
        .carousel-slide:nth-child(even) {
            background-color: #d1d5db;
        }

        .carousel-slide.active {
            opacity: 1;
        }

        /* --- 7. Table Styles --- */
        .table-container {
            overflow-x: auto;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
            border-radius: 0.75rem; /* Used radius-xl */
            /* FIX: Ensure table corners don't overflow */
            overflow: hidden; 
        }

        .pillar-table {
            min-width: 100%;
            border-collapse: collapse;
            text-align: left;
            border-radius: 0.75rem; /* Used radius-xl */
            overflow: hidden;
        }

        .pillar-table thead tr {
            background-color: #c8e6c9; /* Used subheader-bg */
            color: #0A2814; /* Used brand-dark */
            border-bottom: 1px solid #d1d5db;
            /* Ensure background prints */
            -webkit-print-color-adjust: exact;
            print-color-adjust: exact;
        }

        .pillar-table th {
            padding: 0.75rem 1.5rem;
            font-size: 0.875rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }
        .pillar-table td {
            padding: 1rem 1.5rem;
            border-bottom: 1px solid #e5e7eb;
            font-weight: 500;
        }

        .pillar-row {
            background-color: #f0f4f0;
            cursor: pointer;
            transition: background-color 0.2s ease;
            /* Ensure background prints */
            -webkit-print-color-adjust: exact;
            print-color-adjust: exact;
        }
        .pillar-table tbody tr:nth-child(even) {
            background-color: #e3e8e3;
        }

        /* Table Hover Effect */
        .pillar-row:hover {
            background-color: rgba(10, 40, 20, 0.1); /* Used brand-dark */
        }
        
        /* --- 8. Print Specific Overrides --- */
        @media print {
            .report-card, .card-header, .sub-header, .pillar-row, .pillar-table thead tr {
                -webkit-print-color-adjust: exact !important;
                print-color-adjust: exact !important;
            }
            body {
                background-color: white;
            }
            .main-content-section {
                padding: 0;
            }
        }
        
        /* --- 9. Image Placeholder Styles --- */
        .diagram-intro-image {
            width: 100%;
            aspect-ratio: 2 / 1;
            background: linear-gradient(135deg, #c8e6c9 0%, #0A2814 100%);
            border-radius: 0.75rem;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 600;
            margin-bottom: 1rem;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        }
        
        /* --- 10. SVG Partnership Diagram Styles (New) --- */
        .partner-diagram-wrapper {
            width: 100%;
            max-width: 600px; /* Max width to contain the SVG's viewbox */
            margin: 0 auto;
            /* IMPORTANT: Add buffer padding to prevent clipping on hover scale */
            padding: 20px; 
            box-sizing: border-box; 
        }

        .partner-svg {
            display: block;
            width: 100%;
            height: auto;
            font-family: 'Inter', sans-serif;
        }

        /* Central Hub (Circle) */
        .central-hub {
            fill: #FFCC00; /* Brand Yellow */
            stroke: #0A2814; /* Brand Dark Green */
            stroke-width: 4;
            filter: url(#box-shadow);
        }

        .central-hub-text {
            fill: #0A2814; /* Brand Dark Green */
            font-size: 14px;
            font-weight: 700;
        }

        /* Partner Boxes (Rectangles) */
        .partner-box {
            stroke: #0A2814;
            stroke-width: 2;
            fill: #e0f2f1; /* Base Light Background - Fallback */
            filter: url(#box-shadow);
            transform-origin: center center; 
            transition: transform 0.2s ease, fill 0.2s ease; /* Add fill to transition */
        }

        /* Specific Base Box Colors */
        .box-khpl { fill: #c8e6c9; } /* Light Green - Health Products */
        .box-kpl { fill: #a5d6a7; } /* Medium Green - Pharmaceutical */
        .box-mtt { fill: #f8fafc; stroke-dasharray: 5, 5; } /* Near White + Dashed - Tech */
        .box-llc { fill: #90caf9; } /* Light Blue - Logistics */

        /* Partner Text */
        .partner-title, .partner-list-item {
            fill: #0A2814;
            font-size: 14px;
            font-weight: 700;
            text-decoration: underline;
            transition: fill 0.2s ease; /* Add fill transition for hover */
        }
        .partner-list-item {
            font-size: 11px;
            font-weight: 500;
            text-decoration: none;
        }

        /* Bullet Points */
        .bullet-point {
            fill: #FFCC00; /* Brand Yellow */
            transition: fill 0.2s ease;
        }
        
        /* Connection Lines */
        .connection-line {
            stroke: #0A2814;
            stroke-width: 2;
            fill: none;
            transition: stroke 0.2s ease;
        }

        /* --- 11. Custom Hover Effects (Specific Box Colors) --- */

        /* General Hover Effects (Scale and Stroke) */
        .partner-link:hover .partner-box {
            transform: scale(1.05);
            cursor: pointer;
            stroke-width: 3;
            stroke: #FFCC00; /* Yellow stroke on hover for all */
        }

        /* A. KHPL (Top Left) - Green Hover */
        .partner-link:hover .box-khpl {
            fill: #4CAF50; /* Medium Green */
        }
        .partner-link:hover .box-khpl ~ .partner-title,
        .partner-link:hover .box-khpl ~ .partner-list-item {
            fill: #FFFFFF; /* White Text */
        }
        .partner-link:hover .box-khpl ~ .bullet-point {
            fill: #FFCC00; /* Keep yellow bullets */
        }

        /* B. KPL (Bottom Left) - Pharmaceutical Blue Hover */
        .partner-link:hover .box-kpl {
            fill: #2196F3; /* Standard Blue */
        }
        .partner-link:hover .box-kpl ~ .partner-title,
        .partner-link:hover .box-kpl ~ .partner-list-item {
            fill: #FFFFFF; /* White Text */
        }
        .partner-link:hover .box-kpl ~ .bullet-point {
            fill: #FFCC00; 
        }

        /* C. MTT (Top Right) - Green & White Hover */
        .partner-link:hover .box-mtt {
            fill: #FFFFFF; /* White fill on hover */
            stroke: #4CAF50; /* Green stroke on hover */
            stroke-dasharray: none; /* Solid border on hover */
        }
        .partner-link:hover .box-mtt ~ .partner-title,
        .partner-link:hover .box-mtt ~ .partner-list-item {
            fill: #0A2814; /* Dark Green Text (Stays readable) */
        }
        .partner-link:hover .box-mtt ~ .bullet-point {
            fill: #0A2814; /* Dark Green Bullets */
        }

        /* D. LLC (Bottom Right) - Deep Blue Hover */
        .partner-link:hover .box-llc {
            fill: #0D47A1; /* Deep Blue */
        }
        .partner-link:hover .box-llc ~ .partner-title,
        .partner-link:hover .box-llc ~ .partner-list-item {
            fill: #FFFFFF; /* White Text */
        }
        .partner-link:hover .box-llc ~ .bullet-point {
            fill: #FFCC00; 
        }

        /* Ensure arrow head uses the dark green brand color */
        #arrowhead polygon {
            fill: #0A2814 !important;
        }
        
        
        .main-content-section {
    max-width: 1200px;
    /* Margin: 2rem top/bottom, auto left/right (centers it) */
    margin: 2rem auto; 
    background-color: white;
    box-shadow: 0 10px 30px 0 rgba(10, 40, 20, 0.1), 0 5px 15px 0 rgba(0, 0, 0, 0.08); 
    border-radius: 0.75rem; 
    border: 1px solid rgba(10, 40, 20, 0.1); 
    /* Padding: 1rem (16px) on all sides for mobile/small screens */
    padding: 1rem; 
    font-family: 'Inter', sans-serif;
    color: #0A2814; 
    position: relative;
}

/* For wider screens (768px and up) */
@media (min-width: 768px) {
    .main-content-section {
        /* Increased padding for desktop view */
        padding: 2rem; 
    }
}

.report-card {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}