
    /* Scoped CSS to protect site integrity */
    .fuji-article-wrapper {
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
        color: #333;
        line-height: 1.7;
        max-width: 900px; /* Control max-width for PC reading comfort */
        margin: 0 auto;
        padding: 20px 0;
        background-color: #ffffff;
    }

    /* Resetting styles for consistency and increasing base font size */
    .fuji-article-wrapper p, 
    .fuji-article-wrapper li, 
    .fuji-article-wrapper td, 
    .fuji-article-wrapper th, 
    .fuji-article-wrapper span, 
    .fuji-article-wrapper a {
        font-size: 17px; /* Increased base font size */
    }

    /* Ensure no top spacing for the first element */
    .fuji-article-wrapper > :first-child {
        margin-top: 0;
    }

    /* Headings optimized for hierarchy */
    .fuji-article-wrapper h2 {
        font-size: 24px; /* Increased for better visual hierarchy */
        font-weight: 700;
        color: #222;
        margin-top: 40px;
        margin-bottom: 18px;
        padding-bottom: 10px;
        border-bottom: 2px solid #eaeaea;
        line-height: 1.4;
    }

    .fuji-article-wrapper h3 {
        font-size: 20px; 
        font-weight: 600;
        margin-top: 25px;
        margin-bottom: 12px;
        color: #d32f2f;
    }

    /* Link styling */
    .fuji-article-wrapper a {
        color: #d32f2f; 
        text-decoration: none;
        font-weight: 600;
        transition: color 0.2s ease;
    }
    .fuji-article-wrapper a:hover {
        text-decoration: underline;
        color: #b71c1c;
    }

    /* Image styling - softer and more modern */
    .fuji-article-wrapper img {
        max-width: 100%;
        height: auto;
        display: block;
        margin: 30px auto;
        border-radius: 8px; /* Softer border radius */
        box-shadow: 0 4px 15px rgba(0,0,0,0.06); /* Natural 3D shadow */
    }

    /* Comparison Table styling */
    .comparison-table {
        width: 100%;
        border-collapse: collapse;
        margin: 30px 0;
        border: 1px solid #e0e0e0;
        border-radius: 8px;
    }
    .comparison-table th, .comparison-table td {
        border: 1px solid #e0e0e0;
        padding: 14px 16px;
        text-align: left;
    }
    .comparison-table th {
        background-color: #f5f7f9;
        font-weight: 700;
        width: 33%;
        color: #222;
    }
    .comparison-table tr:hover {
        background-color: #fafafa;
    }

    /* FAQ Box */
    .faq-container {
        background-color: #fdfaf9; /* Softer warm gray tone */
        padding: 25px 30px;
        border-radius: 8px;
        margin-top: 45px;
        border-left: 5px solid #d32f2f; /* Thicker left accent border */
        box-shadow: 0 2px 10px rgba(0,0,0,0.02);
    }
    .faq-container h3 {
        margin-top: 0;
    }
    .faq-item {
        margin-bottom: 20px;
    }
    .faq-item:last-child {
        margin-bottom: 0;
    }
    .faq-question {
        display: block;
        font-weight: 700;
        margin-bottom: 6px;
        color: #111;
        font-size: 18px; /* Prominent font size for questions */
    }

    /* Contact & CTA Block Styling for Emphasis */
    .cta-highlight {
        background-color: #fff9f9;
        border: 1px solid #f8d7d7;
        padding: 20px;
        border-radius: 8px;
        margin-top: 35px;
        text-align: center;
    }

    /* Mobile Optimization */
    @media (max-width: 768px) {
        .fuji-article-wrapper {
            padding: 0 15px; /* Added safe horizontal padding */
        }
        .fuji-article-wrapper h2 {
            margin-top: 30px;
            font-size: 21px; 
        }
        .fuji-article-wrapper h3 {
            font-size: 18px;
        }
        .fuji-article-wrapper p, 
        .fuji-article-wrapper li, 
        .fuji-article-wrapper td, 
        .fuji-article-wrapper th, 
        .fuji-article-wrapper span, 
        .fuji-article-wrapper a {
            font-size: 16px; /* Reset to 16px for mobile reading comfort */
            margin-bottom: 14px;
        }
        .faq-question {
            font-size: 16px;
        }
        .faq-container {
            padding: 20px 15px;
        }
        .fuji-article-wrapper img {
            margin: 20px auto;
        }
        /* Mobile Table Scrolling Setup */
        .comparison-table {
            display: block;
            overflow-x: auto;
            min-width: 100%;
        }
        .comparison-table th, .comparison-table td {
            min-width: 140px; /* Prevent text from squishing */
        }
    }
