
    /* Scoped CSS for Content Isolation */
    .fuji-standard-wrapper {
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
        color: #333;
        line-height: 1.7;
        max-width: 100%;
        margin: 0 auto;
    }

    /* Typography Reset */
    .fuji-standard-wrapper p, 
    .fuji-standard-wrapper li, 
    .fuji-standard-wrapper td, 
    .fuji-standard-wrapper th, 
    .fuji-standard-wrapper span, 
    .fuji-standard-wrapper a {
        font-size: 16px !important;
    }

    /* Headings */
    .fuji-standard-wrapper h2 {
        font-size: 24px !important;
        font-weight: 700;
        color: #000;
        margin-top: 40px;
        margin-bottom: 20px;
        padding-bottom: 10px;
        border-bottom: 2px solid #f0f0f0;
        line-height: 1.3;
    }
    
    .fuji-standard-wrapper h2:first-of-type {
        margin-top: 0 !important;
    }

    .fuji-standard-wrapper h3 {
        font-size: 20px !important;
        font-weight: 600;
        margin-top: 30px;
        margin-bottom: 15px;
        color: #444;
    }

    /* Links */
    .fuji-standard-wrapper a {
        color: #d32f2f;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.2s ease;
        border-bottom: 1px dotted #d32f2f;
    }
    .fuji-standard-wrapper a:hover {
        color: #b71c1c;
        background-color: #ffebee;
    }

    /* Images */
    .fuji-standard-wrapper img {
        max-width: 700px; 
        width: 100%;
        height: auto;
        display: block;
        margin: 30px 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: -20px;
        margin-bottom: 35px;
        font-style: italic;
    }

    /* Tables */
    .compare-table {
        width: 100%;
        border-collapse: collapse;
        margin: 30px 0;
        border: 1px solid #ddd;
        box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    }
    .compare-table th, .compare-table td {
        border: 1px solid #ddd;
        padding: 15px;
        text-align: left;
    }
    .compare-table th {
        background-color: #f8f9fa;
        font-weight: 700;
        color: #2c3e50;
    }
    .compare-table tr:nth-child(even) {
        background-color: #fcfcfc;
    }

    /* Highlight Boxes */
    .trust-box {
        background-color: #e3f2fd;
        border-left: 5px solid #2196f3;
        padding: 20px;
        margin: 30px 0;
        border-radius: 0 4px 4px 0;
    }

    .safety-box {
        background-color: #fff3e0;
        border-left: 5px solid #ff9800;
        padding: 20px;
        margin: 30px 0;
        border-radius: 0 4px 4px 0;
    }

    /* FAQ */
    .faq-wrapper {
        margin-top: 50px;
        border-top: 1px solid #eee;
        padding-top: 30px;
        background-color: #fafafa;
        padding: 20px;
        border-radius: 8px;
    }
    .faq-item {
        margin-bottom: 20px;
    }
    .faq-question {
        display: block;
        font-weight: 700;
        margin-bottom: 8px;
        color: #b71c1c;
        font-size: 18px !important;
    }

    /* Author */
    .author-box {
        display: flex;
        align-items: center;
        margin-top: 50px;
        padding-top: 30px;
        border-top: 1px solid #eee;
    }
    .author-text { font-size: 14px; color: #555; }

    /* Lists */
    .fuji-standard-wrapper ul {
        padding-left: 20px;
        margin-bottom: 20px;
    }
    .fuji-standard-wrapper li {
        margin-bottom: 10px;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .fuji-standard-wrapper h2 { margin-top: 30px; font-size: 20px !important; }
        .compare-table { display: block; overflow-x: auto; white-space: nowrap; }
        .trust-box, .safety-box { padding: 15px; }
        .author-box { flex-direction: column; text-align: center; }
    }
