
    /* Scoped CSS: Isolates styles to prevent conflicts */
    .fuji-guide-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 Enforcement */
    .fuji-guide-wrapper p, 
    .fuji-guide-wrapper li, 
    .fuji-guide-wrapper td, 
    .fuji-guide-wrapper th, 
    .fuji-guide-wrapper span, 
    .fuji-guide-wrapper a {
        font-size: 16px !important;
    }

    /* Headings: Standardized H2 (Max 20px) for CMS Compatibility */
    .fuji-guide-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 very first heading */
    .fuji-guide-wrapper h2:first-of-type {
        margin-top: 0 !important;
    }

    .fuji-guide-wrapper h3 {
        font-size: 18px !important;
        font-weight: 600;
        margin-top: 25px;
        margin-bottom: 10px;
        color: #444;
    }

    /* Links */
    .fuji-guide-wrapper a {
        color: #d32f2f;
        text-decoration: none;
        font-weight: 600;
        transition: color 0.2s ease;
    }
    .fuji-guide-wrapper a:hover {
        text-decoration: underline;
        color: #b71c1c;
    }

    /* Images: Updated to limit width to 600px */
    .fuji-guide-wrapper img {
        max-width: 600px; /* Limits image width to 600px */
        width: 100%;      /* Ensures responsiveness below 600px */
        height: auto;
        display: block;
        margin: 25px auto; /* Increased margin for better spacing */
        border-radius: 4px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    }
    
    .img-caption {
        text-align: center;
        font-size: 14px !important;
        color: #666;
        margin-top: -15px; /* Adjusted margin */
        margin-bottom: 25px;
        font-style: italic;
    }

    /* Tables */
    .tech-table {
        width: 100%;
        border-collapse: collapse;
        margin: 20px 0;
        border: 1px solid #eee;
    }
    .tech-table th, .tech-table td {
        border: 1px solid #eee;
        padding: 12px;
        text-align: left;
    }
    .tech-table th {
        background-color: #f8f8f8;
        font-weight: 700;
        color: #000;
    }

    /* Feature Blocks */
    .info-box {
        background-color: #f9f9f9;
        border-left: 4px solid #333;
        padding: 15px 20px;
        margin: 25px 0;
    }
    .info-box h3 {
        margin-top: 0;
    }

    /* Troubleshooting Table specifically */
    .trouble-table th {
        background-color: #ffebee; /* Light red for contrast */
    }
    
    /* Author Bio Box */
    .author-bio {
        background-color: #fff;
        border: 1px solid #e0e0e0;
        padding: 20px;
        margin-top: 40px;
        display: flex;
        align-items: center;
        gap: 15px;
    }
    .author-bio img {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        margin: 0; /* Override general img margin */
    }

    /* Mobile Optimization */
    @media (max-width: 768px) {
        .fuji-guide-wrapper {
            padding: 0;
        }
        .fuji-guide-wrapper h2 {
            margin-top: 25px;
            font-size: 18px !important;
        }
        .tech-table {
            display: block;
            overflow-x: auto;
            white-space: nowrap;
        }
        .info-box {
            padding: 15px;
        }
        .author-bio {
            flex-direction: column;
            text-align: center;
        }
    }
