
    /* --- Container --- */
    .fuji-blog-wrapper {
        font-family: 'Open Sans', 'Segoe UI', Helvetica, sans-serif;
        color: #333;
        line-height: 1.8;
        max-width: 1000px; /* Slightly wider to accommodate detailed text */
        margin: 0 auto;
        padding: 20px;
        font-size: 16px;
    }

    /* --- Typography --- */
    .fuji-blog-wrapper h1 {
        font-family: 'Oswald', sans-serif;
        font-size: 32px;
        color: #000;
        margin-bottom: 20px;
        line-height: 1.3;
    }

    .fuji-blog-wrapper h2 {
        font-family: 'Oswald', sans-serif;
        font-size: 26px;
        color: #005bb5; /* Industrial Blue */
        margin-top: 50px;
        margin-bottom: 20px;
        font-weight: 700;
        border-left: 6px solid #000;
        padding-left: 15px;
    }

    .fuji-blog-wrapper h3 {
        font-family: 'Oswald', sans-serif;
        font-size: 20px;
        color: #000;
        margin-top: 30px;
        margin-bottom: 15px;
        font-weight: 600;
    }

    .fuji-blog-wrapper p {
        margin-bottom: 20px;
        text-align: justify;
    }

    /* --- Links --- */
    .fuji-blog-link {
        color: #005bb5;
        text-decoration: underline;
        font-weight: 600;
        transition: color 0.2s;
    }
    .fuji-blog-link:hover {
        color: #000;
    }

    /* --- Images (RESPONSIVE FIX) --- */
    .fuji-blog-img-figure {
        margin: 35px 0;
        text-align: center;
        display: block;
    }
    
    .fuji-blog-img {
        display: block;
        width: 100%;             /* Changed from auto to 100% for mobile responsiveness */
        max-width: 600px;        /* Strict Width Limit remains */
        max-height: 600px;       /* Strict Height Limit */
        height: auto;            /* Maintains aspect ratio */
        margin: 0 auto;
        border-radius: 4px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        border: 1px solid #eee;
        object-fit: contain;     /* Ensure image isn't cropped */
    }
    
    .fuji-img-caption {
        font-size: 14px;
        color: #666;
        margin-top: 10px;
        font-style: italic;
        display: block;
        text-align: center;
    }

    /* --- Feature Lists --- */
    .fuji-tech-list {
        list-style: none;
        padding: 0;
        margin-bottom: 20px;
    }
    .fuji-tech-list li {
        position: relative;
        padding-left: 25px;
        margin-bottom: 12px;
    }
    .fuji-tech-list li::before {
        content: "➤";
        color: #005bb5;
        position: absolute;
        left: 0;
        top: 2px;
        font-size: 14px;
    }
    .fuji-tech-list strong {
        color: #000;
    }

    /* --- Comparison Table --- */
    .fuji-table-wrap {
        overflow-x: auto;
        margin: 30px 0;
        border-radius: 6px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    }
    .fuji-comp-table {
        width: 100%;
        border-collapse: collapse;
        min-width: 800px; /* Force scroll on mobile */
    }
    .fuji-comp-table th, .fuji-comp-table td {
        border: 1px solid #e0e0e0;
        padding: 12px;
        text-align: left;
        vertical-align: top;
        font-size: 15px;
    }
    .fuji-comp-table th {
        background-color: #005bb5;
        color: #fff;
        font-weight: 600;
        text-transform: uppercase;
    }
    .fuji-comp-table tr:nth-child(even) {
        background-color: #f8fbff;
    }

    /* --- Special Boxes --- */
    .fuji-market-shift-box {
        background-color: #eef2f5;
        border-left: 5px solid #555;
        padding: 20px;
        margin: 25px 0;
        font-style: italic;
    }
    
    .fuji-warning-box {
        background-color: #fff3cd;
        border-left: 5px solid #ffc107;
        padding: 20px;
        margin: 25px 0;
    }
    
    .fuji-announcement-box {
        background-color: #e8f4fd;
        border-left: 5px solid #005bb5;
        padding: 20px;
        margin: 25px 0;
    }

    /* --- FAQ Section --- */
    .fuji-faq-container {
        background-color: #f9f9f9;
        padding: 30px;
        border-radius: 8px;
        margin-top: 40px;
    }
    .fuji-faq-item {
        margin-bottom: 20px;
        border-bottom: 1px solid #e0e0e0;
        padding-bottom: 20px;
    }
    .fuji-faq-item:last-child {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }
    .fuji-question {
        font-weight: 700;
        color: #005bb5;
        display: block;
        margin-bottom: 8px;
        font-size: 17px;
    }

    /* --- CTA Button --- */
    .fuji-cta-block {
        text-align: center;
        margin-top: 50px;
        padding-top: 40px;
        border-top: 2px solid #eee;
    }
    .fuji-btn-primary {
        display: inline-block;
        background-color: #005bb5;
        color: #fff !important;
        padding: 16px 45px;
        font-size: 18px;
        font-weight: 700;
        text-decoration: none;
        border-radius: 5px;
        transition: all 0.3s ease;
        text-transform: uppercase;
    }
    .fuji-btn-primary:hover {
        background-color: #002a5c;
    }

    @media (max-width: 600px) {
        .fuji-blog-wrapper h1 { font-size: 26px; }
        .fuji-blog-wrapper h2 { font-size: 22px; }
        .fuji-btn-primary { width: 100%; box-sizing: border-box; }
    }
