
    /* Scoped CSS for Fuji Blog Post */
    .fuji-blog-container {
        font-family: Verdana, Geneva, sans-serif;
        font-size: 16px;
        line-height: 1.5;
        color: #333;
        width: 100%;
        margin: 0 auto;
        padding: 0;
    }

    /* Headings */
    .fuji-blog-container h2 {
        font-size: 20px;
        font-weight: 700;
        color: #000;
        margin-top: 30px;
        margin-bottom: 15px;
        border-left: 5px solid #e60012; /* Fuji Red Brand Color */
        padding-left: 15px;
    }

    .fuji-blog-container h3 {
        font-size: 18px;
        font-weight: 600;
        color: #444;
        margin-top: 25px;
        margin-bottom: 10px;
    }

    /* Paragraphs & 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: underline;
        font-weight: bold;
    }

    /* Images */
    .fuji-blog-container img {
        max-width: 100%;
        height: auto;
        display: block;
        margin: 20px auto;
        border-radius: 4px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    /* Comparison Table Styles */
    .table-wrapper {
        overflow-x: auto;
        margin-bottom: 20px;
    }
    
    .tech-table {
        width: 100%;
        border-collapse: collapse;
        min-width: 600px; /* Ensures table doesn't squish on mobile */
    }
    
    .tech-table th, .tech-table td {
        border: 1px solid #ddd;
        padding: 10px;
        text-align: left;
    }
    
    .tech-table th {
        background-color: #f5f5f5;
        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-item {
        background: #fafafa;
        border: 1px solid #eee;
        padding: 15px;
        margin-bottom: 15px;
    }
    .faq-q {
        font-weight: bold;
        display: block;
        margin-bottom: 5px;
        color: #000;
    }

    /* Remove top margin from first element */
    .fuji-blog-container > *:first-child {
        margin-top: 0;
    }
