
    /* Scoped CSS for Content Isolation */
    .fuji-maintenance-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-maintenance-wrapper p, 
    .fuji-maintenance-wrapper li, 
    .fuji-maintenance-wrapper td, 
    .fuji-maintenance-wrapper th, 
    .fuji-maintenance-wrapper span, 
    .fuji-maintenance-wrapper a {
        font-size: 16px !important;
    }

    /* Headings optimized for hierarchy without H1 */
    .fuji-maintenance-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;
    }
    
    .fuji-maintenance-wrapper h2:first-of-type {
        margin-top: 0 !important;
    }

    .fuji-maintenance-wrapper h3 {
        font-size: 18px !important;
        font-weight: 600;
        margin-top: 25px;
        margin-bottom: 10px;
        color: #444;
    }

    /* Link styling */
    .fuji-maintenance-wrapper a {
        color: #d32f2f;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.2s ease;
    }
    .fuji-maintenance-wrapper a:hover {
        text-decoration: underline;
        color: #b71c1c;
    }

    /* Image styling */
    .fuji-maintenance-wrapper img {
        max-width: 600px; 
        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;
    }

    /* Step Box Styling */
    .step-box {
        background-color: #f9f9f9;
        border-left: 4px solid #333;
        padding: 15px 20px;
        margin: 20px 0;
    }

    /* Checklist Box */
    .checklist-box {
        background-color: #e3f2fd; /* Light Blue */
        border-left: 4px solid #2196f3;
        padding: 15px 20px;
        margin: 20px 0;
    }

    /* Warning Box */
    .warning-box {
        background-color: #fff3e0; /* Light Orange */
        border-left: 4px solid #ff9800;
        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-maintenance-wrapper {
            padding: 0;
        }
        .fuji-maintenance-wrapper h2 {
            margin-top: 25px;
            font-size: 18px !important;
        }
        .step-box, .warning-box, .checklist-box {
            padding: 15px;
        }
    }
