
    /* CSS Styles - Responsive & Clean Layout */
    .fuji-article-container {
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
        font-size: 16px;
        line-height: 1.6;
        color: #333;
        max-width: 1200px; 
        margin: 0 auto;
        padding: 20px;
    }

    /* Trust Signals: Post Meta Data */
    .post-meta {
        font-size: 14px;
        color: #555;
        background-color: #f8f9fa;
        padding: 12px 18px;
        border-radius: 6px;
        margin-bottom: 25px;
        border-left: 4px solid #d32f2f;
    }

    /* Headings */
    .fuji-article-container h2 {
        font-size: 22px; 
        font-weight: 700;
        color: #111;
        margin-top: 40px;
        margin-bottom: 15px;
        border-bottom: 2px solid #f0f0f0;
        padding-bottom: 8px;
        scroll-margin-top: 100px; 
    }
    .fuji-article-container h2:first-of-type {
        margin-top: 0;
    }
    
    .fuji-article-container h3 {
        font-size: 18px;
        font-weight: 600;
        color: #333;
        margin-top: 25px;
        margin-bottom: 10px;
    }

    /* Links */
    .fuji-article-container a {
        color: #d32f2f;
        text-decoration: underline;
        text-decoration-color: rgba(211, 47, 47, 0.3);
        font-weight: 600;
        transition: all 0.2s ease;
    }
    .fuji-article-container a:hover {
        color: #b71c1c;
        text-decoration-color: #d32f2f;
    }

    /* Images */
    .fuji-responsive-img {
        max-width: 100%;
        height: auto;
        display: block;
        margin: 25px auto;
        border-radius: 6px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    }

    /* Video Embed */
    .video-wrapper {
        position: relative;
        padding-bottom: 56.25%; /* 16:9 aspect ratio */
        height: 0;
        margin: 30px 0;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        border-radius: 6px;
        overflow: hidden;
    }
    .video-wrapper iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 0;
    }

    /* Callout & Case Study Boxes */
    .info-box {
        background-color: #f0fdf4;
        border-left: 4px solid #16a34a;
        padding: 15px 20px;
        margin: 25px 0;
        border-radius: 4px;
    }
    
    .product-box {
        background-color: #fff9e6;
        border-left: 4px solid #f59e0b;
        padding: 20px;
        margin: 25px 0;
        border-radius: 4px;
    }

    /* Comparison/Data Table */
    .fuji-data-table {
        width: 100%;
        border-collapse: collapse;
        margin: 25px 0;
        font-size: 15px;
        background-color: #fff;
        box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    }
    .fuji-data-table th, .fuji-data-table td {
        border: 1px solid #e2e8f0;
        padding: 12px 15px;
        text-align: left;
    }
    .fuji-data-table th {
        background-color: #f8fafc;
        color: #0f172a;
        font-weight: bold;
    }
    .fuji-data-table tr:nth-child(even) {
        background-color: #fcfcfc;
    }

    /* FAQ Section */
    .fuji-faq-item {
        margin-bottom: 15px;
        background: #fff;
        border: 1px solid #e2e8f0;
        border-radius: 6px;
        padding: 18px;
        box-shadow: 0 1px 2px rgba(0,0,0,0.02);
    }
    .fuji-faq-question {
        font-weight: bold;
        color: #0f172a;
        display: block;
        margin-bottom: 8px;
        font-size: 16px;
    }

    /* Author Bio Box */
    .author-bio {
        background-color: #fff;
        border: 1px solid #e2e8f0;
        border-radius: 8px;
        padding: 25px;
        margin-top: 50px;
        display: flex;
        align-items: center;
        gap: 20px;
    }
    .author-bio img {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        object-fit: cover;
    }

    /* Mobile Optimization */
    @media screen and (max-width: 768px) {
        .fuji-article-container { padding: 0; }
        .fuji-article-container h2 { font-size: 20px; }
        .fuji-data-table { display: block; overflow-x: auto; white-space: nowrap; }
        .author-bio { flex-direction: column; text-align: center; }
    }
