
    /* Global Container Settings */
    .fuji-blog-container {
        font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
        line-height: 1.8;
        color: #333;
        max-width: 900px;
        margin: 0 auto;
        padding: 20px;
        font-size: 16px;
        background-color: #fff;
    }
    
    /* Typography */
    .fuji-h2 {
        color: #e60012; /* Fuji Red */
        border-bottom: 2px solid #f1f1f1;
        padding-bottom: 10px;
        margin-top: 45px;
        margin-bottom: 20px;
        font-size: 26px;
        font-weight: 700;
    }
    .fuji-h3 {
        color: #2c3e50;
        margin-top: 35px;
        margin-bottom: 15px;
        font-weight: 600;
        font-size: 22px;
    }
    .fuji-blog-container p {
        margin-bottom: 20px;
        text-align: justify;
    }
    .highlight-text {
        font-weight: bold;
        color: #e60012;
    }

    /* Info Boxes & Callouts */
    .tech-specs-box {
        background-color: #f8f9fa;
        border-left: 5px solid #e60012;
        padding: 25px;
        margin: 30px 0;
        border-radius: 4px;
        font-size: 16px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    }
    .authoritative-box {
        background-color: #eef2f5;
        border: 1px solid #d1d9e0;
        padding: 30px;
        margin: 40px 0;
        border-radius: 8px;
        text-align: center;
    }
    .authoritative-box h3 {
        margin-top: 0;
        color: #004085;
    }

    /* Lists */
    .fuji-blog-container ul {
        background: #fcfcfc;
        padding: 25px 25px 25px 45px;
        border-radius: 6px;
        border-left: 5px solid #ddd;
        margin-bottom: 25px;
    }
    .fuji-blog-container li {
        margin-bottom: 12px;
    }

    /* Tables */
    .table-wrapper {
        overflow-x: auto;
        margin: 30px 0;
        box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    }
    .comparison-table {
        width: 100%;
        border-collapse: collapse;
        min-width: 600px;
    }
    .comparison-table th {
        background-color: #333;
        color: white;
        padding: 16px;
        text-align: left;
        font-weight: 600;
    }
    .comparison-table td {
        border: 1px solid #dee2e6;
        padding: 16px;
    }
    .comparison-table tr:nth-child(even) { background-color: #f9f9f9; }
    .comparison-table tr:hover { background-color: #f1f1f1; }

    /* Images */
    .fuji-blog-container figure {
        display: block;
        margin: 40px 0;
        padding: 0;
        text-align: center;
        width: 100%;
    }
    .fuji-img {
        max-width: 100%;
        height: auto;
        display: block;
        margin: 0 auto;
        border-radius: 6px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }
    figcaption {
        margin-top: 15px;
        font-size: 0.9em;
        color: #666;
        font-style: italic;
    }
    
    /* Links */
    .fuji-btn-link {
        color: #e60012;
        text-decoration: underline;
        font-weight: 600;
        transition: color 0.2s ease;
    }
    .fuji-btn-link:hover {
        color: #a3000d;
    }

    /* Mobile Optimization */
    @media (max-width: 768px) {
        .fuji-blog-container { font-size: 17px; padding: 15px; }
        .fuji-h2 { font-size: 22px; }
        .fuji-h3 { font-size: 19px; }
        .tech-specs-box { padding: 15px; }
        .authoritative-box { padding: 20px; }
    }
