
    /* Scoped CSS for FUJI Blog */
    .fuji-article-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 for the first element */
    .fuji-article-container > *:first-child {
        margin-top: 0 !important;
    }

    /* Headings strictly constrained */
    .fuji-article-container h2 {
        font-size: 20px !important;
        font-weight: 700;
        color: #000;
        margin-top: 35px;
        margin-bottom: 15px;
        border-bottom: 2px solid #e60012; /* Fuji Red */
        padding-bottom: 5px;
        line-height: 1.3;
    }

    .fuji-article-container h3 {
        font-size: 18px !important;
        font-weight: 600;
        color: #e60012;
        margin-top: 25px;
        margin-bottom: 10px;
        line-height: 1.3;
    }

    /* Text & Layout */
    .fuji-article-container p {
        margin-bottom: 15px;
        text-align: justify;
    }

    .fuji-article-container ul {
        margin-bottom: 20px;
        padding-left: 20px;
    }

    .fuji-article-container li {
        margin-bottom: 8px;
    }

    /* Links */
    .fuji-article-container a {
        color: #e60012;
        text-decoration: none;
        font-weight: bold;
        transition: color 0.2s ease;
    }
    .fuji-article-container a:hover {
        text-decoration: underline;
        color: #b71c1c;
    }

    /* Images & Video */
    .fuji-article-container img {
        max-width: 100% !important;
        height: auto !important;
        display: block;
        margin: 20px auto;
        border-radius: 4px;
        box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    }

    .video-container {
        position: relative;
        padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
        height: 0;
        max-width: 100%;
        margin: 20px auto;
        background: #000;
        border-radius: 4px;
        overflow: hidden;
    }
    
    .video-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 0;
    }

    /* Technical 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; /* Forces scroll on small screens */
        font-size: 15px;
    }
    
    .tech-table th, 
    .tech-table td {
        padding: 12px;
        border: 1px solid #ddd;
        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 {
        display: block;
        font-weight: bold;
        color: #000;
        margin-bottom: 5px;
    }

    /* Mobile adjustments */
    @media (max-width: 768px) {
        .fuji-article-container p {
            text-align: left;
        }
    }
