
    /* Scoped CSS for Content Isolation */
    .fuji-economic-wrapper {
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
        color: #333;
        line-height: 1.6;
        max-width: 100%;
        margin: 0 auto;
    }

    /* Typography Reset */
    .fuji-economic-wrapper p, 
    .fuji-economic-wrapper li, 
    .fuji-economic-wrapper td, 
    .fuji-economic-wrapper th, 
    .fuji-economic-wrapper span, 
    .fuji-economic-wrapper a {
        font-size: 16px !important;
    }

    /* Headings optimized for hierarchy without H1 */
    /* IDs removed to allow CMS auto-anchoring */
    .fuji-economic-wrapper h2 {
        font-size: 20px !important;
        font-weight: 700;
        color: #000;
        margin-top: 35px;
        margin-bottom: 15px;
        padding-bottom: 8px;
        border-bottom: 2px solid #f0f0f0;
        line-height: 1.3;
    }
    
    /* Remove top margin for the first header */
    .fuji-economic-wrapper h2:first-of-type {
        margin-top: 0 !important;
    }

    .fuji-economic-wrapper h3 {
        font-size: 18px !important;
        font-weight: 600;
        margin-top: 25px;
        margin-bottom: 10px;
        color: #444;
    }

    /* Link styling */
    .fuji-economic-wrapper a {
        color: #d32f2f;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.2s ease;
    }
    .fuji-economic-wrapper a:hover {
        text-decoration: underline;
        color: #b71c1c;
    }

    /* Image styling */
    .fuji-economic-wrapper img {
        max-width: 600px; /* Limit image width */
        width: 100%;
        height: auto;
        display: block;
        margin: 25px auto;
        border-radius: 4px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    }
    
    .img-caption {
        text-align: center;
        font-size: 14px !important;
        color: #666;
        margin-top: -15px;
        margin-bottom: 25px;
        font-style: italic;
    }

    /* ROI Table Styling */
    .roi-table {
        width: 100%;
        border-collapse: collapse;
        margin: 20px 0;
        border: 1px solid #ddd;
    }
    .roi-table th, .roi-table td {
        border: 1px solid #ddd;
        padding: 12px;
        text-align: center;
    }
    .roi-table th {
        background-color: #f4f4f4;
        font-weight: 700;
    }
    .roi-highlight {
        background-color: #e8f5e9; /* Light green for savings */
        font-weight: bold;
        color: #2e7d32;
    }

    /* Info Box */
    .insight-box {
        background-color: #fff8e1; /* Light yellow */
        border-left: 4px solid #ffc107;
        padding: 15px 20px;
        margin: 20px 0;
    }

    /* FAQ Section */
    .faq-wrapper {
        margin-top: 40px;
        border-top: 1px solid #eee;
        padding-top: 20px;
    }
    .faq-item {
        margin-bottom: 15px;
    }
    .faq-question {
        display: block;
        font-weight: 700;
        margin-bottom: 5px;
        color: #000;
    }

    /* Mobile Optimization */
    @media (max-width: 768px) {
        .fuji-economic-wrapper {
            padding: 0;
        }
        .fuji-economic-wrapper h2 {
            margin-top: 25px;
            font-size: 18px !important;
        }
        .roi-table {
            display: block;
            overflow-x: auto;
            white-space: nowrap;
        }
        .insight-box {
            padding: 15px;
        }
    }
