
    /* Scoped CSS for Fuji Blog Post */
    .fuji-blog-container {
        font-family: 'Segoe UI', Verdana, Geneva, sans-serif;
        font-size: 16px;
        line-height: 1.6;
        color: #333;
        margin: 0;
        padding: 20px 0;
        max-width: 100%;
    }

    /* Typography */
    .fuji-blog-container h2 {
        font-size: 24px;
        font-weight: 700;
        color: #111;
        margin-top: 40px;
        margin-bottom: 20px;
        border-bottom: 2px solid #e60012; /* Fuji Red */
        padding-bottom: 10px;
    }

    .fuji-blog-container h3 {
        font-size: 20px;
        font-weight: 600;
        margin-top: 30px;
        margin-bottom: 15px;
        color: #444;
    }
    
    .fuji-blog-container h4 {
        font-size: 18px;
        font-weight: 600;
        margin-top: 20px;
        margin-bottom: 10px;
        color: #e60012;
    }

    /* Paragraphs & Lists */
    .fuji-blog-container p {
        margin-bottom: 18px;
        text-align: justify;
    }

    .fuji-blog-container ul, .fuji-blog-container ol {
        margin-bottom: 25px;
        padding-left: 20px;
    }

    .fuji-blog-container li {
        margin-bottom: 10px;
    }

    /* Links */
    .fuji-blog-container a {
        color: #e60012;
        text-decoration: underline;
        font-weight: bold;
        transition: color 0.2s ease;
    }
    .fuji-blog-container a:hover {
        color: #b3000e;
    }

    /* Images */
    .fuji-blog-container img {
        max-width: 100%;
        height: auto;
        display: block;
        margin: 30px auto;
        border-radius: 4px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }
    
    .img-caption {
        text-align: center;
        font-size: 14px;
        color: #666;
        margin-top: -20px;
        margin-bottom: 30px;
        font-style: italic;
    }

    /* Callout Boxes */
    .feature-box {
        background-color: #f8f9fa;
        border-left: 5px solid #0056b3; /* Professional Blue */
        padding: 20px;
        margin: 30px 0;
        border-radius: 0 4px 4px 0;
    }
    
    .roi-box {
        background-color: #e8f5e9;
        border-left: 5px solid #2e7d32; /* Money Green */
        padding: 20px;
        margin: 30px 0;
    }

    .safety-alert {
        background-color: #fff3cd;
        border-left: 5px solid #ffc107; /* Warning Yellow */
        padding: 20px;
        margin: 30px 0;
        font-size: 16px;
    }

    /* Tables */
    .table-wrapper {
        overflow-x: auto;
        margin-bottom: 30px;
    }
    
    .tech-table {
        width: 100%;
        border-collapse: collapse;
        font-size: 15px;
        background: #fff;
        box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    }
    .tech-table th, .tech-table td {
        border: 1px solid #e0e0e0;
        padding: 15px;
        text-align: left;
    }
    .tech-table th {
        background-color: #f1f1f1;
        font-weight: 700;
        color: #333;
    }
    .tech-table tr:nth-child(even) {
        background-color: #fafafa;
    }

    /* FAQ Section */
    .faq-section {
        margin-top: 40px;
        background-color: #f9f9f9;
        padding: 20px;
        border-radius: 8px;
    }
    .faq-item {
        margin-bottom: 20px;
        padding-bottom: 20px;
        border-bottom: 1px solid #e0e0e0;
    }
    .faq-item:last-child {
        border-bottom: none;
    }
    .faq-question {
        font-weight: 700;
        color: #000;
        display: block;
        margin-bottom: 10px;
        font-size: 18px;
    }
