
    /* --- Global Styles & Typography --- */
    .fuji-product-container {
        font-family: 'Segoe UI', Verdana, Geneva, sans-serif;
        font-size: 17px; 
        line-height: 1.6;
        color: #333;
        max-width: 1280px; /* Adjusted to wider display width */
        margin: 0 auto;
        padding: 20px; 
        box-sizing: border-box;
    }
    
    .fuji-product-container h2 {
        font-size: 24px;
        font-weight: 700;
        color: #111;
        border-bottom: 2px solid #e0e0e0;
        padding-bottom: 10px;
        margin-top: 40px; 
        margin-bottom: 20px;
    }
    .fuji-product-container h2:first-of-type { margin-top: 0; }
    
    .fuji-product-container h3 {
        font-size: 20px;
        font-weight: 600;
        color: #ba372a; 
        margin-top: 25px;
        margin-bottom: 12px;
    }
    
    .fuji-product-container p { margin-bottom: 15px; text-align: justify; }
    .fuji-product-container ul, .fuji-product-container ol { margin-bottom: 20px; padding-left: 25px; }
    .fuji-product-container li { margin-bottom: 8px; }

    /* --- Media Standardization (Images & Videos) --- */
    .fuji-media-wrapper {
        width: 100%;
        max-width: 650px; /* Keeps images crisp and prevents them from becoming too large */
        margin: 30px auto;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 6px 18px rgba(0,0,0,0.1);
        background: #fff;
    }

    .fuji-media-wrapper img {
        width: 100%;
        height: auto;
        display: block;
        object-fit: cover;
    }

    .video-wrapper {
        position: relative; 
        padding-bottom: 56.25%; 
        height: 0;
        width: 100%; 
    }
    .video-wrapper iframe { 
        position: absolute; 
        top: 0; left: 0; 
        width: 100%; height: 100%; 
        border: none; 
    }

    /* Spec Diagram */
    img.fuji-spec-image {
        max-width: 100%; 
        height: auto;
        display: block; 
        margin: 25px auto;
        border: 1px solid #eee;
    }
    @media (min-width: 769px) {
        img.fuji-spec-image {
            max-width: 650px; 
        }
    }
    
    /* --- Tables --- */
    .table-wrapper { overflow-x: auto; margin-bottom: 25px; box-shadow: 0 2px 8px rgba(0,0,0,0.05); }
    .fuji-spec-table { width: 100%; border-collapse: collapse; min-width: 600px; background: #fff; }
    .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; font-weight: 700; width: 35%; color: #222; }
    
    /* --- Grids & Callouts (E-E-A-T Features) --- */
    .feature-grid { 
        display: grid; 
        grid-template-columns: repeat(2, 1fr); 
        gap: 20px; 
        margin-bottom: 30px; 
    }
    .feature-item { 
        background: #fdfdfd; 
        padding: 20px; 
        border-top: 4px solid #ba372a; 
        border-radius: 0 0 6px 6px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.04);
        height: 100%; 
        box-sizing: border-box; 
    }
    .feature-item strong { display: block; font-size: 18px; margin-bottom: 8px; color: #111; }
    
    .expert-tip { 
        background-color: #f9fbfd; 
        border: 1px solid #cce2ff; 
        border-left: 5px solid #0056b3;
        padding: 20px; 
        border-radius: 4px; 
        margin: 25px 0; 
    }
    
    .trust-badge {
        background-color: #fdfaf0;
        border: 1px solid #f6e0b5;
        padding: 15px 20px;
        border-radius: 4px;
        margin: 20px 0;
        display: flex;
        align-items: center;
    }

    /* --- Links & FAQs --- */
    .fuji-link { color: #ba372a; text-decoration: underline; font-weight: 600; transition: color 0.2s; }
    .fuji-link:hover { color: #000; }
    
    .faq-container { margin-bottom: 30px; }
    .faq-item { margin-bottom: 15px; border-bottom: 1px solid #eaeaea; padding-bottom: 15px; }
    .faq-question { font-weight: 700; color: #111; display: block; margin-bottom: 6px; font-size: 18px; }
    .faq-answer { margin-bottom: 0; color: #444; }
    
    /* --- Mobile Responsiveness --- */
    @media (max-width: 768px) {
        .fuji-product-container { padding: 15px; }
        .feature-grid { grid-template-columns: 1fr; gap: 15px; }
        .fuji-product-container h2 { font-size: 22px; }
        .fuji-product-container h3 { font-size: 18px; }
        .fuji-media-wrapper { margin: 20px auto; }
    }
