
    /* --- General Layout --- */
    .fuji-blog-wrapper {
        font-family: 'Open Sans', 'Segoe UI', Helvetica, sans-serif;
        color: #333;
        line-height: 1.8;
        /* FIXED WIDTH FOR PC */
        max-width: 1200px; 
        margin: 0 auto;
        /* UPDATED: Top padding set to 0 to remove space */
        padding: 0 20px 40px 20px;
        font-size: 16px;
        background-color: #fff;
    }

    /* --- Typography --- */
    
    /* Standard H2 Styling */
    .fuji-blog-wrapper h2 {
        font-family: 'Oswald', sans-serif;
        font-size: 28px;
        color: #005bb5; /* Industrial Blue */
        margin-top: 60px;
        margin-bottom: 25px;
        font-weight: 700;
        border-left: 8px solid #000;
        padding-left: 20px;
        background: linear-gradient(90deg, #f9f9f9 0%, #fff 100%);
        padding-top: 10px;
        padding-bottom: 10px;
    }

    /* UPDATED: Remove margin from the very first H2 to eliminate top gap */
    .fuji-blog-wrapper > h2:first-of-type {
        margin-top: 0;
    }

    .fuji-blog-wrapper h3 {
        font-family: 'Oswald', sans-serif;
        font-size: 22px;
        color: #000;
        margin-top: 35px;
        margin-bottom: 15px;
        font-weight: 600;
        border-bottom: 2px solid #eee;
        padding-bottom: 5px;
        display: inline-block;
    }

    .fuji-blog-wrapper p {
        margin-bottom: 20px;
        text-align: justify;
        color: #444;
    }

    .fuji-blog-wrapper .lead {
        font-size: 18px;
        font-weight: 500;
        color: #222;
        border-left: 4px solid #005bb5;
        padding-left: 20px;
        margin-bottom: 40px;
    }

    .fuji-blog-link {
        color: #005bb5;
        text-decoration: underline;
        font-weight: 600;
        transition: color 0.2s;
    }
    .fuji-blog-link:hover {
        color: #000;
    }

    /* --- Images (Mobile Responsive) --- */
    .fuji-blog-img-figure {
        margin: 40px 0;
        text-align: center;
        display: block;
        width: 100%;
        background: #fafafa;
        padding: 20px;
        border-radius: 8px;
    }
    
    .fuji-blog-img {
        display: block;
        width: 100%;             
        max-width: 700px;        
        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: 15px;
        color: #555;
        margin-top: 15px;
        font-weight: 500;
        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: 30px;
        margin-bottom: 12px;
    }
    .fuji-tech-list li::before {
        content: "➤";
        color: #005bb5;
        position: absolute;
        left: 0;
        top: 2px;
        font-size: 16px;
        font-weight: bold;
    }
    .fuji-tech-list strong {
        color: #000;
        font-weight: 700;
    }

    /* --- Table --- */
    .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: 800px; /* Consistently wide for PC */
    }
    .fuji-comp-table th, .fuji-comp-table td {
        border: 1px solid #e0e0e0;
        padding: 18px;
        text-align: left;
        vertical-align: top;
    }
    .fuji-comp-table th {
        background-color: #005bb5;
        color: #fff;
        font-weight: 600;
        text-transform: uppercase;
        font-size: 15px;
        letter-spacing: 0.5px;
    }
    .fuji-comp-table tr:nth-child(even) {
        background-color: #f8fbff;
    }
    .fuji-comp-table tr:hover {
        background-color: #f0f7ff;
    }

    /* --- Boxes --- */
    .fuji-info-box {
        background-color: #f0f7ff;
        border-left: 5px solid #005bb5;
        padding: 25px;
        margin: 30px 0;
        border-radius: 0 5px 5px 0;
    }
    .fuji-key-takeaway {
        border: 2px solid #005bb5;
        background-color: #fff;
        padding: 25px;
        margin: 40px 0;
        border-radius: 8px;
        text-align: center;
        font-weight: 600;
        color: #005bb5;
        font-size: 18px;
        box-shadow: 0 4px 15px rgba(0,91,181,0.1);
    }

    /* --- CTA Button (Desktop Defaults) --- */
    .fuji-cta-block {
        text-align: center;
        margin-top: 60px;
        padding-top: 40px;
        border-top: 2px solid #eee;
    }
    .fuji-btn-primary {
        display: inline-block;
        background-color: #005bb5;
        color: #fff !important;
        padding: 18px 50px;
        font-size: 18px;
        font-weight: 700;
        text-decoration: none;
        border-radius: 5px;
        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(-2px);
    }

    /* ========================================= */
    /* 📱 MOBILE OPTIMIZATIONS */
    /* ========================================= */
    @media (max-width: 768px) {
        .fuji-blog-wrapper {
            padding: 0 15px 20px 15px; /* Top padding 0 for mobile too */
        }

        .fuji-blog-wrapper h2 {
            font-size: 22px;
            margin-top: 40px;
            border-left-width: 5px;
            padding-left: 15px;
        }
        
        /* Ensure first H2 on mobile also has no top margin */
        .fuji-blog-wrapper > h2:first-of-type {
            margin-top: 0;
        }

        .fuji-blog-wrapper h3 {
            font-size: 19px;
            margin-top: 25px;
        }
        
        .fuji-blog-wrapper p {
            font-size: 16px;
            margin-bottom: 15px;
        }
        
        .fuji-btn-primary {
            width: 100%;              
            box-sizing: border-box;   
            padding: 15px 20px;       
            font-size: 16px;          
            margin-top: 15px;
        }
        .fuji-cta-block {
            margin-top: 40px;
            padding-top: 20px;
        }

        .fuji-tech-list li {
            padding-left: 25px;
        }
    }
