
    /* --- Blog Container --- */
    .fuji-blog-wrapper {
        font-family: 'Open Sans', 'Segoe UI', Helvetica, sans-serif;
        color: #333;
        line-height: 1.8;
        max-width: 900px;
        margin: 0 auto;
        padding: 20px;
        font-size: 16px;
    }

    /* --- Typography --- */
    .fuji-blog-wrapper h2 {
        font-family: 'Oswald', sans-serif;
        font-size: 28px;
        color: #005bb5;
        margin-top: 40px;
        margin-bottom: 20px;
        font-weight: 700;
        border-left: 5px solid #000;
        padding-left: 15px;
    }

    .fuji-blog-wrapper h3 {
        font-family: 'Oswald', sans-serif;
        font-size: 22px;
        color: #000;
        margin-top: 30px;
        margin-bottom: 15px;
        font-weight: 600;
    }

    .fuji-blog-wrapper p {
        margin-bottom: 20px;
    }

    /* --- Links --- */
    .fuji-blog-link {
        color: #005bb5;
        text-decoration: underline;
        font-weight: 600;
        transition: color 0.2s;
    }
    .fuji-blog-link:hover {
        color: #000;
    }

    /* --- Images (600px Limit) --- */
    .fuji-blog-img-figure {
        margin: 30px 0;
        text-align: center;
        display: block; 
    }
    
    .fuji-blog-img {
        display: block;          
        width: 100%;             
        max-width: 600px;        
        height: auto;            
        margin: 0 auto;          
        
        border-radius: 4px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        border: 1px solid #eee;
    }
    
    .fuji-img-caption {
        font-size: 14px;
        color: #666;
        margin-top: 10px;
        font-style: italic;
        display: block;          
        text-align: center;      
    }

    /* --- Technical Lists --- */
    .fuji-tech-list {
        list-style: none;
        padding: 0;
    }
    .fuji-tech-list li {
        position: relative;
        padding-left: 25px;
        margin-bottom: 15px;
    }
    .fuji-tech-list li::before {
        content: "✔";
        color: #005bb5;
        position: absolute;
        left: 0;
        top: 0;
        font-weight: bold;
    }
    .fuji-tech-list strong {
        color: #000;
    }

    /* --- Responsive Table --- */
    .fuji-table-wrap {
        overflow-x: auto;
        margin: 30px 0;
    }
    .fuji-spec-table {
        width: 100%;
        border-collapse: collapse;
        min-width: 600px; 
    }
    .fuji-spec-table th, .fuji-spec-table td {
        border: 1px solid #ddd;
        padding: 12px 15px;
        text-align: left;
    }
    .fuji-spec-table th {
        background-color: #f4f4f4;
        color: #000;
        font-weight: 700;
    }
    .fuji-spec-table tr:nth-child(even) {
        background-color: #fafafa;
    }

    /* --- Warning Box --- */
    .fuji-warning-box {
        background-color: #fff3cd;
        border-left: 5px solid #ffc107;
        padding: 20px;
        margin: 30px 0;
        border-radius: 4px;
    }

    /* --- Highlight Box --- */
    .fuji-highlight-box {
        background-color: #e6f2ff;
        border-left: 5px solid #005bb5;
        padding: 20px;
        margin: 30px 0;
        border-radius: 4px;
    }

    /* --- FAQ Section --- */
    .fuji-faq-box {
        background-color: #f9f9f9;
        padding: 25px;
        border-radius: 8px;
        margin: 30px 0;
    }
    .fuji-faq-q {
        font-weight: 700;
        color: #005bb5;
        margin-bottom: 5px;
        display: block;
    }

    /* --- CTA Button --- */
    .fuji-cta-container {
        text-align: center;
        margin-top: 50px;
        padding-top: 30px;
        border-top: 1px solid #eee;
    }
    .fuji-blog-btn {
        display: inline-block;
        background-color: #005bb5;
        color: #fff !important;
        padding: 15px 40px;
        font-size: 18px;
        font-weight: 700;
        text-decoration: none;
        border-radius: 4px;
        transition: background 0.3s;
        text-transform: uppercase;
    }
    .fuji-blog-btn:hover {
        background-color: #002a5c; 
    }

    /* --- Mobile Tweak --- */
    @media (max-width: 600px) {
        .fuji-blog-wrapper h2 { font-size: 24px; }
        .fuji-blog-btn { width: 100%; box-sizing: border-box; }
    }
