
    /* Scoped CSS for Fuji Blog Post */
    .fuji-blog-container {
        font-family: Arial, Helvetica, sans-serif;
        font-size: 16px;
        line-height: 1.6;
        color: #333;
        width: 100%;
        margin: 0 auto;
        padding: 0;
    }

    /* Remove top margin from first element */
    .fuji-blog-container > *:first-child {
        margin-top: 0 !important;
    }

    /* Headings (Strictly constrained to max 20px) */
    .fuji-blog-container h2 {
        font-size: 20px !important;
        font-weight: 700;
        color: #000;
        margin-top: 35px;
        margin-bottom: 15px;
        border-left: 5px solid #e60012; /* Fuji Red */
        padding-left: 10px;
        line-height: 1.3;
    }

    .fuji-blog-container h3 {
        font-size: 18px !important;
        font-weight: 600;
        color: #e60012;
        margin-top: 25px;
        margin-bottom: 10px;
        line-height: 1.3;
    }

    /* Text & Lists */
    .fuji-blog-container p {
        margin-bottom: 15px;
        text-align: justify;
    }

    .fuji-blog-container ul {
        margin-bottom: 20px;
        padding-left: 20px;
    }

    .fuji-blog-container li {
        margin-bottom: 8px;
    }

    /* Links */
    .fuji-blog-container a {
        color: #e60012;
        text-decoration: none;
        font-weight: bold;
        transition: color 0.2s ease;
    }
    .fuji-blog-container a:hover {
        text-decoration: underline;
        color: #b71c1c;
    }

    /* Responsive Media Container (600-800px constraint) */
    .media-container {
        max-width: 750px; /* Optimal reading width for PC */
        margin: 25px auto;
        border-radius: 4px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        overflow: hidden;
        background: #fff;
    }

    .media-container img {
        width: 100% !important;
        height: auto !important;
        display: block;
        margin: 0 !important;
        border: none !important;
        box-shadow: none !important;
    }

    .video-wrapper {
        position: relative;
        padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
        height: 0;
        width: 100%;
        background: #000;
    }

    .video-wrapper iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 0;
    }

    /* Comparison Table */
    .table-wrapper {
        overflow-x: auto;
        margin: 25px 0;
        border: 1px solid #ddd;
        border-radius: 4px;
    }
    
    .tech-table {
        width: 100%;
        border-collapse: collapse;
        min-width: 600px;
        font-size: 15px;
    }
    
    .tech-table th, .tech-table td {
        border: 1px solid #ddd;
        padding: 12px;
        text-align: left;
    }
    
    .tech-table th {
        background-color: #f8f9fa;
        font-weight: bold;
        color: #000;
    }

    /* Pro-Tip Box */
    .pro-tip {
        background-color: #f0f7ff;
        border-left: 5px solid #0056b3;
        padding: 15px;
        margin: 20px 0;
        font-size: 15px;
    }

    /* FAQ Section */
    .faq-container {
        background: #fafafa;
        border: 1px solid #eee;
        padding: 20px;
        border-radius: 4px;
        margin-top: 30px;
    }
    
    .faq-item {
        margin-bottom: 15px;
        padding-bottom: 15px;
        border-bottom: 1px dashed #ccc;
    }

    .faq-item:last-child {
        margin-bottom: 0;
        padding-bottom: 0;
        border-bottom: none;
    }
    
    .faq-q {
        font-weight: bold;
        display: block;
        margin-bottom: 5px;
        color: #000;
    }

    /* Mobile adjustments */
    @media (max-width: 768px) {
        .fuji-blog-container p {
            text-align: left;
        }
    }
