
    /* --- Main Container (Wide but Compact) --- */
    .fuji-blog-wrapper {
        font-family: 'Open Sans', 'Segoe UI', Helvetica, sans-serif;
        color: #333;
        line-height: 1.6; /* Slightly reduced line-height for compactness */
        max-width: 1200px;
        margin: 0 auto;
        padding: 30px 20px; /* Reduced padding */
        font-size: 16px;
        box-sizing: border-box; 
    }

    /* --- Typography (PC Defaults - Scaled Down) --- */
    .fuji-blog-wrapper h1 {
        font-family: 'Oswald', sans-serif;
        font-size: 30px; /* PC: Reduced from 36px */
        color: #000;
        margin-bottom: 20px; 
        line-height: 1.3;
        text-align: center;
    }

    .fuji-blog-wrapper h2 {
        font-family: 'Oswald', sans-serif;
        font-size: 24px; /* PC: Reduced from 28px */
        color: #005bb5;
        margin-top: 35px; /* PC: Drastically reduced from 60px */
        margin-bottom: 15px;
        font-weight: 700;
        border-left: 6px solid #000;
        padding-left: 15px;
    }

    .fuji-blog-wrapper h3 {
        font-family: 'Oswald', sans-serif;
        font-size: 20px; /* PC: Reduced from 22px */
        color: #333;
        margin-top: 25px; 
        margin-bottom: 10px;
        font-weight: 600;
    }

    .fuji-blog-wrapper p {
        margin-bottom: 15px; /* Tighter paragraphs */
        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 (Standardized & Mobile Safe) --- */
    .fuji-blog-img-figure {
        margin: 30px 0; 
        text-align: center;
        display: block;
        width: 100%;
    }
    
    .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;
        object-fit: contain;     
    }
    
    .fuji-img-caption {
        font-size: 13px;
        color: #666;
        margin-top: 10px;
        font-style: italic;
        display: block;
        text-align: center;
    }

    /* --- Lists --- */
    .fuji-tech-list {
        list-style: none;
        padding: 0;
        margin-bottom: 20px; 
    }
    .fuji-tech-list li {
        position: relative;
        padding-left: 25px;
        margin-bottom: 10px; /* Tighter list items */
    }
    .fuji-tech-list li::before {
        content: "➤";
        color: #005bb5;
        position: absolute;
        left: 0;
        top: 3px;
        font-size: 14px;
    }
    .fuji-tech-list strong {
        color: #000;
    }

    /* --- Numbered List --- */
    .fuji-num-list {
        counter-reset: fuji-counter;
        list-style: none;
        padding: 0;
        margin-bottom: 20px;
    }
    .fuji-num-list li {
        position: relative;
        padding-left: 35px;
        margin-bottom: 12px;
    }
    .fuji-num-list li::before {
        counter-increment: fuji-counter;
        content: counter(fuji-counter);
        background-color: #005bb5;
        color: #fff;
        font-weight: bold;
        font-size: 13px;
        width: 22px;
        height: 22px;
        border-radius: 50%;
        text-align: center;
        line-height: 22px;
        position: absolute;
        left: 0;
        top: 2px;
    }

    /* --- Table (Scrollable) --- */
    .fuji-table-wrap {
        overflow-x: auto;
        margin: 30px 0;
        border-radius: 6px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        width: 100%;
    }
    .fuji-comp-table {
        width: 100%;
        border-collapse: collapse;
        min-width: 600px; 
    }
    .fuji-comp-table th, .fuji-comp-table td {
        border: 1px solid #e0e0e0;
        padding: 12px 15px; 
        text-align: left;
        vertical-align: top;
    }
    .fuji-comp-table th {
        background-color: #005bb5;
        color: #fff;
        font-weight: 600;
        text-transform: uppercase;
        font-size: 14px;
    }
    .fuji-comp-table tr:nth-child(even) {
        background-color: #f8fbff;
    }

    /* --- Boxes (Tighter Padding) --- */
    .fuji-info-box {
        background-color: #f0f7ff;
        border-left: 5px solid #005bb5;
        padding: 20px; 
        margin: 25px 0;
    }

    .fuji-grit-box {
        background-color: #f5f5f5;
        border: 1px solid #ddd;
        border-radius: 6px;
        padding: 20px;
        margin: 25px 0;
    }

    .fuji-benefits-box {
        border: 2px solid #28a745;
        border-radius: 8px;
        padding: 20px; 
        margin: 30px 0;
        background-color: #f9fff9;
    }
    .fuji-benefits-title {
        color: #28a745;
        font-weight: 700;
        font-size: 18px;
        margin-bottom: 15px;
        display: block;
        text-transform: uppercase;
    }

    .fuji-summary-box {
        background-color: #f8f9fa;
        border: 2px solid #005bb5;
        border-radius: 8px;
        padding: 20px; 
        margin: 30px 0;
        box-shadow: 0 2px 8px rgba(0,91,181,0.1);
    }
    .fuji-summary-title {
        color: #005bb5;
        font-weight: 700;
        font-size: 18px;
        margin-bottom: 15px;
        display: block;
        text-transform: uppercase;
        border-bottom: 1px solid #ddd;
        padding-bottom: 8px;
    }

    /* --- FAQ Section (Tightened) --- */
    .fuji-faq-container {
        background-color: #f9f9f9;
        padding: 25px;
        border-radius: 8px;
        margin-top: 35px;
    }
    .fuji-faq-item {
        margin-bottom: 15px; /* Was 25px */
        border-bottom: 1px solid #e0e0e0;
        padding-bottom: 15px; /* Was 25px */
    }
    .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: 6px; 
        font-size: 16px;
    }

    /* --- CTA Button --- */
    .fuji-cta-block {
        text-align: center;
        margin-top: 40px;
        padding-top: 30px;
        border-top: 1px solid #eee;
    }
    .fuji-btn-primary {
        display: inline-block;
        background-color: #005bb5;
        color: #fff !important;
        padding: 15px 40px;
        font-size: 16px;
        font-weight: 700;
        text-decoration: none;
        border-radius: 4px;
        transition: all 0.3s ease;
        text-transform: uppercase;
        box-shadow: 0 4px 6px rgba(0,91,181,0.2);
    }
    .fuji-btn-primary:hover {
        background-color: #002a5c;
        transform: translateY(-1px);
    }

    /* ========================================= */
    /* 📱 MOBILE SPECIFIC REFINEMENTS */
    /* ========================================= */
    @media (max-width: 768px) {
        .fuji-blog-wrapper { 
            padding: 15px; 
        }
        
        /* 1. Smaller Fonts & Tighter Spacing for Titles */
        .fuji-blog-wrapper h1 { 
            font-size: 24px; /* Mobile: 24px */
            margin-bottom: 15px;
            line-height: 1.2;
        }
        .fuji-blog-wrapper h2 { 
            font-size: 20px; /* Mobile: 20px */
            margin-top: 30px; 
            margin-bottom: 12px;
            padding-left: 10px;
            border-left-width: 4px;
        }
        .fuji-blog-wrapper h3 { 
            font-size: 18px; /* Mobile: 18px */
            margin-top: 20px;
            margin-bottom: 8px;
        }
        
        /* 2. Tighter Body Text */
        .fuji-blog-wrapper p {
            font-size: 15px;
            margin-bottom: 12px;
        }

        /* 3. Compact Components */
        .fuji-btn-primary { 
            width: 100%; 
            box-sizing: border-box; 
            padding: 12px 20px;
        }
        .fuji-summary-box, 
        .fuji-info-box, 
        .fuji-grit-box, 
        .fuji-benefits-box, 
        .fuji-faq-container { 
            padding: 15px; 
            margin: 20px 0;
        }
        
        /* 4. Ultra Tight FAQ on Mobile */
        .fuji-faq-item {
            margin-bottom: 12px;
            padding-bottom: 12px;
        }
        .fuji-question {
            font-size: 15px;
        }
    }
