
    /* Scoped CSS for Fuji Blog Post */
    .fuji-blog-container {
        font-family: Verdana, Geneva, sans-serif;
        font-size: 16px;
        line-height: 1.6;
        color: #333;
        width: 100%;
        max-width: 1200px; /* Adjusted from 900px to make the article wider */
        margin: 0 auto;
        padding: 0 15px;
        box-sizing: border-box;
    }

    /* Remove top margin from first element */
    .fuji-blog-container > *:first-child {
        margin-top: 0;
    }

    /* Headings */
    .fuji-blog-container h2 {
        font-size: 20px;
        font-weight: 700;
        color: #000;
        margin-top: 35px;
        margin-bottom: 15px;
        border-left: 5px solid #e60012; 
        padding-left: 12px;
        line-height: 1.3;
    }

    .fuji-blog-container h3 {
        font-size: 18px;
        font-weight: 600;
        color: #444;
        margin-top: 25px;
        margin-bottom: 12px;
    }

    /* Text & Links */
    .fuji-blog-container p {
        margin-bottom: 16px;
        text-align: justify;
    }

    .fuji-blog-container ul {
        margin-bottom: 20px;
        padding-left: 20px;
    }

    .fuji-blog-container li {
        margin-bottom: 10px;
    }

    .fuji-blog-container a {
        color: #e60012;
        text-decoration: underline;
        font-weight: bold;
        transition: color 0.3s ease;
    }

    .fuji-blog-container a:hover {
        color: #cc0000;
    }

    /* Responsive Video Container */
    .video-wrapper {
        position: relative;
        padding-bottom: 56.25%; 
        height: 0;
        margin-bottom: 25px;
        background: #000;
        border-radius: 6px;
        overflow: hidden;
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }

    .video-wrapper iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 0;
    }

    /* Comparison Table */
    .table-container {
        width: 100%;
        overflow-x: auto;
        margin: 20px 0;
        box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        border-radius: 4px;
    }

    .tech-table {
        width: 100%;
        border-collapse: collapse;
        font-size: 15px;
        min-width: 500px;
    }

    .tech-table th, .tech-table td {
        border: 1px solid #ddd;
        padding: 12px;
        text-align: left;
    }

    .tech-table th {
        background-color: #f5f5f5;
        font-weight: bold;
        color: #000;
    }
    
    .tech-table tr:nth-child(even) {
        background-color: #fafafa;
    }

    /* Feature Box */
    .feature-box {
        background-color: #f9f9f9;
        border-left: 4px solid #e60012;
        padding: 18px;
        margin: 25px 0;
        border-radius: 0 4px 4px 0;
    }

    /* FAQ Section */
    .faq-container {
        margin-top: 30px;
    }

    .faq-box {
        background-color: #fff;
        border: 1px solid #eaeaea;
        padding: 18px;
        margin-bottom: 15px;
        border-radius: 6px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.02);
    }

    .faq-question {
        font-weight: 700;
        display: block;
        margin-bottom: 8px;
        color: #000;
        font-size: 16px;
    }

    /* Call to Action */
    .cta-box {
        background-color: #8b0000; /* Changed to industrial dark red */
        color: #fff;
        padding: 25px;
        text-align: center;
        border-radius: 6px;
        margin-top: 35px;
    }

    .cta-box h2 {
        color: #fff;
        border-left: none;
        padding-left: 0;
        margin-top: 0;
        text-align: center;
    }

    .cta-box p {
        text-align: center;
        color: #fff;
    }

    .cta-box a {
        display: inline-block;
        background-color: #fff;
        color: #8b0000; /* Match text to the new background */
        padding: 12px 24px;
        text-decoration: none;
        border-radius: 4px;
        margin-top: 15px;
        text-transform: uppercase;
        font-weight: 900;
    }

    .cta-box a:hover {
        background-color: #f0f0f0;
    }

    /* Mobile Adaptations */
    @media (max-width: 600px) {
        .fuji-blog-container h2 {
            font-size: 18px;
        }
        .fuji-blog-container h3 {
            font-size: 16px;
        }
        .fuji-blog-container {
            font-size: 15px;
        }
    }
