
        /* Global Container Styles */
        .fuji-article-container {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            font-size: 17px; 
            line-height: 1.7;
            color: #333;
            width: 100%;
            max-width: 1050px; 
            margin: 0 auto;
            padding: 0;
        }

        /* Remove top margin from first element */
        .fuji-article-container > *:first-child {
            margin-top: 0 !important;
        }

        /* Heading Styles */
        .fuji-article-container h2 {
            font-size: 26px; 
            font-weight: 700;
            color: #111;
            margin-top: 50px;
            margin-bottom: 20px;
            border-bottom: 3px solid #e60012; 
            padding-bottom: 8px;
            display: inline-block;
            scroll-margin-top: 80px;
        }

        .fuji-article-container h3 {
            font-size: 22px;
            font-weight: 600;
            color: #222;
            margin-top: 35px;
            margin-bottom: 15px;
        }

        .fuji-article-container h4 {
            font-size: 19px;
            font-weight: 600;
            color: #e60012;
            margin-top: 25px;
            margin-bottom: 10px;
        }

        /* Paragraphs & Lists */
        .fuji-article-container p {
            margin-bottom: 18px;
            text-align: justify;
        }
        
        .fuji-article-container ul, 
        .fuji-article-container ol {
            margin-bottom: 20px;
            padding-left: 20px;
        }
        
        .fuji-article-container li {
            margin-bottom: 10px;
        }

        /* Links */
        .fuji-article-container a {
            color: #e60012;
            text-decoration: none;
            font-weight: 600;
            border-bottom: 1px solid transparent;
            transition: border-color 0.3s ease;
        }
        .fuji-article-container a:hover {
            border-bottom: 1px solid #e60012;
        }

        /* Images */
        .fuji-article-container img {
            max-width: 100% !important;
            height: auto !important;
            display: block;
            margin: 35px auto;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            loading: lazy;
        }
        .fuji-img-caption {
            text-align: center;
            font-size: 14px;
            color: #666;
            font-style: italic;
            margin-top: -25px;
            margin-bottom: 35px;
            display: block;
        }

        /* Video Container */
        .fuji-video-container {
            width: 100%;
            max-width: 850px;
            margin: 35px auto;
            background-color: #000;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }
        .fuji-video-wrapper {
            position: relative;
            padding-bottom: 56.25%; 
            height: 0;
        }
        .fuji-video-wrapper iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 0;
            loading: lazy;
        }

        /* Company History Section */
        .fuji-history-block {
            display: flex;
            align-items: center;
            gap: 35px;
            margin: 35px 0;
            background-color: #fcfcfc;
            border: 1px solid #eaeaea;
            padding: 30px;
            border-radius: 8px;
        }
        .fuji-history-text {
            flex: 1;
        }
        .fuji-history-text p:last-child {
            margin-bottom: 0;
        }
        .fuji-history-img {
            flex: 0 0 45%;
        }
        .fuji-history-img img {
            margin: 0; /* Override global img margin */
            width: 100%;
        }

        /* Why Choose FUJI Grid */
        .fuji-advantages-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
            margin: 35px 0;
        }
        .fuji-adv-card {
            background: #fff;
            border: 1px solid #eaeaea;
            border-top: 4px solid #e60012;
            padding: 25px;
            border-radius: 6px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.04);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .fuji-adv-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.08);
        }
        .fuji-adv-card h4 {
            margin-top: 0;
            color: #111;
            font-size: 20px;
        }

        /* Product Highlight Cards */
        .fuji-product-card {
            background-color: #fafafa;
            border: 1px solid #eaeaea;
            border-left: 4px solid #e60012;
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 8px 8px 0;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }
        .fuji-product-card:hover {
            transform: translateX(5px);
            box-shadow: 0 6px 15px rgba(0,0,0,0.05);
        }

        /* Highlight Box */
        .fuji-highlight-box {
            background-color: #f4f6f8;
            border-radius: 6px;
            padding: 25px;
            margin: 30px 0;
            border-left: 5px solid #333;
        }

        /* Comparison Table Styles */
        .fuji-table-wrapper {
            overflow-x: auto;
            margin: 35px 0;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.04);
        }
        .fuji-tech-table {
            width: 100%;
            border-collapse: collapse;
            min-width: 600px; 
        }
        .fuji-tech-table th, 
        .fuji-tech-table td {
            padding: 16px;
            border: 1px solid #eaeaea;
            text-align: left;
        }
        .fuji-tech-table th {
            background-color: #f4f6f8;
            font-weight: 700;
            color: #111;
            font-size: 18px;
        }

        /* FAQ Section Styles */
        .fuji-faq-wrapper {
            margin-top: 45px;
        }
        .fuji-faq-box {
            background: #fdfaf9;
            border: 1px solid #f0e6e6;
            border-left: 4px solid #e60012;
            padding: 20px 25px;
            margin-bottom: 15px;
            border-radius: 4px;
        }
        .fuji-faq-question {
            display: block;
            font-weight: 700;
            font-size: 18px;
            color: #111;
            margin-bottom: 8px;
        }
        .fuji-faq-answer {
            color: #444;
            margin-bottom: 0;
        }

        /* Author Bio Box */
        .fuji-author-bio {
            background-color: #f9f9f9;
            border: 1px solid #eaeaea;
            border-left: 4px solid #111;
            padding: 25px;
            margin-top: 40px;
            border-radius: 4px;
        }
        .fuji-author-header {
            font-size: 19px;
            font-weight: 700;
            color: #111;
            margin-bottom: 10px;
            display: block;
        }
        .fuji-author-desc {
            font-size: 16px;
            color: #444;
            margin-bottom: 0;
            line-height: 1.6;
        }

        /* Call To Action Block */
        .fuji-cta-block {
            background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
            color: #fff;
            padding: 40px 30px;
            border-radius: 8px;
            text-align: center;
            margin-top: 50px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }
        .fuji-cta-block h3 {
            color: #fff;
            margin-top: 0;
            font-size: 26px;
            border-bottom: none;
        }
        .fuji-cta-block p {
            color: #e0e0e0;
            font-size: 18px;
            max-width: 700px;
            margin: 0 auto 25px auto;
            text-align: center;
        }
        .fuji-btn-primary {
            display: inline-block;
            background-color: #e60012;
            color: #fff !important;
            font-weight: 700;
            padding: 14px 32px;
            border-radius: 4px;
            text-transform: uppercase;
            letter-spacing: 1px;
            text-decoration: none !important;
            transition: background-color 0.3s ease, transform 0.2s ease;
            margin: 10px;
        }
        .fuji-btn-primary:hover {
            background-color: #cc0010;
            transform: translateY(-2px);
            border-bottom: none;
        }
        .fuji-btn-secondary {
            display: inline-block;
            background-color: transparent;
            color: #fff !important;
            font-weight: 700;
            padding: 12px 30px;
            border-radius: 4px;
            border: 2px solid #fff;
            text-transform: uppercase;
            letter-spacing: 1px;
            text-decoration: none !important;
            transition: background-color 0.3s ease, color 0.3s ease;
            margin: 10px;
        }
        .fuji-btn-secondary:hover {
            background-color: #fff;
            color: #111 !important;
            border-bottom: 2px solid #fff;
        }

        /* Mobile Adaptations */
        @media (max-width: 768px) {
            .fuji-article-container { padding: 0 15px; }
            .fuji-article-container h2 { font-size: 22px; }
            .fuji-article-container h3 { font-size: 20px; }
            .fuji-article-container p, 
            .fuji-article-container li { font-size: 16px; }
            
            .fuji-history-block { flex-direction: column; padding: 20px; gap: 20px; }
            .fuji-history-img { width: 100%; }
            
            .fuji-advantages-grid { grid-template-columns: 1fr; }
            
            .fuji-product-card { padding: 15px; }
            .fuji-faq-box { padding: 15px; }
            .fuji-author-bio { padding: 20px 15px; }
            .fuji-cta-block { padding: 30px 20px; }
            .fuji-btn-primary, .fuji-btn-secondary { display: block; margin: 15px auto; width: 100%; box-sizing: border-box; }
        }
    