
    /* --- Enhanced CSS for Rich Content --- */
    .fuji-blog-container {
        font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
        font-size: 17px; /* Increased legibility */
        line-height: 1.7;
        color: #2c3e50;
        width: 100%;
        max-width: 900px; /* Optimal reading width */
        margin: 0 auto;
        padding: 20px;
        background-color: #fff;
    }

    /* Typography - H1 removed as requested */
    .fuji-blog-container h2 {
        font-size: 24px;
        font-weight: 700;
        color: #333;
        margin-top: 40px;
        margin-bottom: 20px;
        border-bottom: 2px solid #eee;
        padding-bottom: 10px;
    }

    .fuji-blog-container h3 {
        font-size: 20px;
        font-weight: 600;
        margin-top: 30px;
        margin-bottom: 15px;
        color: #444;
    }

    /* Rich Text Elements */
    .fuji-blog-container p { margin-bottom: 18px; }
    
    .fuji-blog-container ul, .fuji-blog-container ol {
        margin-bottom: 25px;
        padding-left: 25px;
    }
    
    .fuji-blog-container li { margin-bottom: 10px; }

    .fuji-blog-container a {
        color: #b22222;
        text-decoration: none;
        border-bottom: 1px dotted #b22222;
        font-weight: 600;
        transition: all 0.3s ease;
    }
    .fuji-blog-container a:hover { background-color: #fff0f0; }

    /* Visuals */
    .fuji-blog-container img {
        max-width: 100%;
        height: auto;
        display: block;
        margin: 30px auto;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }
    
    .image-caption {
        text-align: center;
        font-size: 14px;
        color: #666;
        margin-top: -20px;
        margin-bottom: 30px;
        font-style: italic;
    }

    /* Callout Boxes (EEAT Signals) */
    .pro-tip-box {
        background-color: #e3f2fd;
        border-left: 5px solid #2196f3;
        padding: 20px;
        margin: 30px 0;
        border-radius: 4px;
    }
    
    .warning-box {
        background-color: #fff3e0;
        border-left: 5px solid #ff9800;
        padding: 20px;
        margin: 30px 0;
        border-radius: 4px;
    }

    /* Data Tables */
    .table-wrapper {
        overflow-x: auto;
        margin: 30px 0;
        border-radius: 8px;
        border: 1px solid #e0e0e0;
    }
    
    .tech-table {
        width: 100%;
        border-collapse: collapse;
        min-width: 600px;
    }
    
    .tech-table th {
        background-color: #f8f9fa;
        color: #333;
        font-weight: 700;
        text-align: left;
        padding: 15px;
        border-bottom: 2px solid #ddd;
    }
    
    .tech-table td {
        padding: 15px;
        border-bottom: 1px solid #eee;
        vertical-align: top;
    }
    
    .tech-table tr:last-child td { border-bottom: none; }

    /* FAQ Styling */
    .faq-section { margin-top: 50px; }
    .faq-item {
        background: #fdfdfd;
        border: 1px solid #eee;
        padding: 20px;
        margin-bottom: 15px;
        border-radius: 6px;
    }
    .faq-question {
        font-weight: 700;
        color: #b22222;
        display: block;
        margin-bottom: 8px;
        font-size: 18px;
    }

    /* Author/Trust Signal */
    .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; }

    @media (max-width: 768px) {
        .fuji-blog-container { padding: 15px; }
        .author-box { flex-direction: column; text-align: center; }
    }
