
    /* SCOPED CSS: Compact, Responsive, E-E-A-T Optimized */
    #fuji-eco-detail {
        font-family: 'Verdana', 'Segoe UI', Helvetica, sans-serif;
        line-height: 1.5;
        color: #333;
        font-size: 16px; /* Base font size */
        background-color: #fff;
        width: 100%;
        margin-top: 0;
        padding-top: 0;
    }

    #fuji-eco-detail .container {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0 0 20px 0;
        box-sizing: border-box;
    }

    /* Headings strictly limited to max 20px */
    #fuji-eco-detail h2 {
        font-size: 20px; 
        color: #b22222;
        border-bottom: 2px solid #b22222;
        padding-bottom: 5px;
        margin-top: 25px;
        margin-bottom: 12px;
        font-weight: 700;
        text-transform: uppercase;
    }

    #fuji-eco-detail h2:first-of-type {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }

    #fuji-eco-detail h3 {
        font-size: 18px;
        color: #333;
        margin-top: 20px;
        margin-bottom: 10px;
        font-weight: 600;
        border-left: 4px solid #b22222;
        padding-left: 10px;
    }

    /* Text & Links */
    #fuji-eco-detail p {
        margin-bottom: 12px;
        text-align: justify;
    }

    #fuji-eco-detail ul {
        margin-bottom: 12px;
        padding-left: 20px;
    }

    #fuji-eco-detail li {
        margin-bottom: 6px;
    }

    #fuji-eco-detail a {
        color: #b22222;
        text-decoration: none;
        font-weight: 600;
        border-bottom: 1px dotted #b22222;
        transition: color 0.3s;
    }

    #fuji-eco-detail a:hover {
        color: #d11;
        border-bottom-style: solid;
    }

    /* Images */
    #fuji-eco-detail img {
        max-width: 450px; 
        width: 100%;      
        height: auto;
        display: block;
        margin: 15px auto;
        border-radius: 4px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    }

    #fuji-eco-detail img.img-chart-wide {
        max-width: 900px !important;
    }

    /* Grids */
    #fuji-eco-detail .eco-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-bottom: 20px;
    }

    #fuji-eco-detail .eco-card {
        background: #f9f9f9;
        padding: 15px;
        border-radius: 6px;
        border: 1px solid #eee;
        transition: transform 0.2s;
    }

    #fuji-eco-detail .eco-card h3 {
        margin-top: 0;
        border-left: none;
        padding-left: 0;
        color: #b22222;
        font-size: 18px;
    }

    #fuji-eco-detail .product-compare {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        margin-top: 15px;
    }
    
    #fuji-eco-detail .product-compare img {
        max-width: 300px;
        margin: 10px auto;
    }

    /* Tables */
    #fuji-eco-detail .table-wrapper {
        overflow-x: auto;
        margin-bottom: 15px;
        border: 1px solid #eee;
        border-radius: 4px;
        width: 100%;
    }

    #fuji-eco-detail table {
        width: 100%;
        border-collapse: collapse;
        min-width: 500px;
    }

    #fuji-eco-detail th, 
    #fuji-eco-detail td {
        padding: 8px 10px;
        border: 1px solid #ddd;
        text-align: center;
        font-size: 14px; /* Kept slightly smaller for table readability */
    }

    #fuji-eco-detail th {
        background-color: #f4f4f4;
        color: #000;
        font-weight: 700;
    }

    /* FAQ */
    #fuji-eco-detail .faq-item {
        border-bottom: 1px solid #eee;
        padding-bottom: 12px;
        margin-bottom: 12px;
    }
    
    #fuji-eco-detail .faq-question {
        font-weight: 700;
        color: #b22222;
        display: block;
        margin-bottom: 5px;
        font-size: 16px;
        cursor: pointer;
    }

    #fuji-eco-detail .faq-item p {
        margin-bottom: 0;
        font-size: 16px;
    }

    /* CTA Box */
    #fuji-eco-detail .cta-box {
        background-color: #f0f0f0;
        padding: 20px;
        margin-top: 25px;
        border-radius: 6px;
        border-top: 3px solid #b22222;
        text-align: center;
    }

    /* Mobile Optimization */
    @media (max-width: 768px) {
        #fuji-eco-detail h2 { font-size: 18px; margin-top: 20px; }
        #fuji-eco-detail .eco-grid,
        #fuji-eco-detail .product-compare { 
            grid-template-columns: 1fr; 
            gap: 10px;
        }
        #fuji-eco-detail img, 
        #fuji-eco-detail img.img-chart-wide,
        #fuji-eco-detail .product-compare img { 
            max-width: 100% !important; 
        } 
    }
