
    /* CSS Styles - Responsive & Clean Layout */
    .fuji-blog-container {
        font-family: Verdana, Arial, sans-serif;
        font-size: 16px;
        line-height: 1.6;
        color: #333;
        max-width: 1200px; /* Wide layout for PC */
        margin: 0 auto;
        padding: 20px;
    }

    /* Headings - Adjusted for System TOC */
    .fuji-blog-container h2 {
        font-size: 20px; 
        font-weight: 700;
        color: #000;
        margin-top: 40px;
        margin-bottom: 15px;
        border-bottom: 2px solid #f0f0f0;
        padding-bottom: 10px;
        scroll-margin-top: 100px; /* Space for sticky headers on jump */
    }
    
    .fuji-blog-container h3 {
        font-size: 18px;
        font-weight: 600;
        color: #444;
        margin-top: 25px;
        margin-bottom: 10px;
    }

    /* Links */
    .fuji-blog-container a {
        color: #0056b3;
        text-decoration: underline;
        font-weight: 600;
    }
    .fuji-blog-container a:hover {
        color: #003d82;
    }

    /* Video Container - Responsive 16:9 Aspect Ratio */
    .video-container {
        position: relative;
        padding-bottom: 56.25%; /* 16:9 Ratio */
        height: 0;
        overflow: hidden;
        max-width: 100%;
        background: #000; /* Black background placeholder */
        margin: 30px 0;
        border-radius: 8px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    }
    .video-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 0;
    }

    /* Responsive Images */
    .fuji-responsive-img {
        max-width: 100%;
        height: auto;
        display: block;
        margin: 25px auto;
        border-radius: 4px;
    }

    /* Technical Specification Table */
    .fuji-spec-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.1);
    }
    .fuji-spec-table th, .fuji-spec-table td {
        border: 1px solid #ddd;
        padding: 12px 15px;
        text-align: left;
    }
    .fuji-spec-table th {
        background-color: #f8f9fa;
        color: #000;
        font-weight: bold;
        width: 30%;
    }
    .fuji-spec-table tr:nth-child(even) {
        background-color: #fcfcfc;
    }

    /* Safety Tip Box */
    .fuji-tip-box {
        background-color: #e3f2fd;
        border-left: 5px solid #2196f3;
        padding: 15px;
        margin: 20px 0;
    }

    /* FAQ Section */
    .fuji-faq-item {
        margin-bottom: 15px;
        border: 1px solid #eee;
        border-radius: 5px;
        padding: 15px;
    }
    .fuji-faq-question {
        font-weight: bold;
        color: #222;
        display: block;
        margin-bottom: 5px;
    }

    /* Mobile Optimization */
    @media screen and (max-width: 768px) {
        .fuji-blog-container {
            padding: 15px;
        }
        .fuji-blog-container h2 {
            margin-top: 25px;
            font-size: 19px;
        }
        .fuji-spec-table {
            display: block;
            overflow-x: auto;
            white-space: nowrap;
        }
    }
