
    /* Scoped CSS for Fuji Blog Post Optimization */
    #fuji-blog-content {
        font-family: Arial, Helvetica, sans-serif;
        font-size: 16px;
        line-height: 1.5;
        color: #333;
        margin-top: 0;
        padding-top: 0;
    }

    #fuji-blog-content h2 {
        font-size: 20px;
        color: #000;
        font-weight: 700;
        margin-top: 30px;
        margin-bottom: 15px;
        border-bottom: 2px solid #e60012; /* Fuji Red Brand Color */
        padding-bottom: 5px;
    }

    #fuji-blog-content h3 {
        font-size: 18px;
        color: #444;
        margin-top: 20px;
        margin-bottom: 10px;
        font-weight: 600;
    }

    #fuji-blog-content p {
        margin-bottom: 15px;
        text-align: justify;
    }

    #fuji-blog-content a {
        color: #e60012;
        text-decoration: underline;
        font-weight: bold;
    }

    #fuji-blog-content ul {
        margin-bottom: 15px;
        padding-left: 20px;
    }

    #fuji-blog-content li {
        margin-bottom: 8px;
    }

    /* Table Styling for Selection Guide */
    #fuji-blog-content .tech-table {
        width: 100%;
        border-collapse: collapse;
        margin: 20px 0;
        font-size: 15px;
    }

    #fuji-blog-content .tech-table th, 
    #fuji-blog-content .tech-table td {
        border: 1px solid #ddd;
        padding: 10px;
        text-align: left;
    }

    #fuji-blog-content .tech-table th {
        background-color: #f8f8f8;
        font-weight: bold;
        color: #000;
    }

    /* Responsive Table wrapper */
    .table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin-bottom: 20px;
    }

    /* Pro-Tip Box */
    .pro-tip-box {
        background-color: #f0f7ff;
        border-left: 5px solid #0056b3;
        padding: 15px;
        margin: 20px 0;
        border-radius: 4px;
    }

    /* Image Responsiveness */
    #fuji-blog-content img {
        max-width: 100%;
        height: auto;
        display: block;
        margin: 20px auto;
        border-radius: 4px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }

    /* FAQ Section Styles */
    .faq-item {
        margin-bottom: 20px;
        border: 1px solid #eee;
        padding: 15px;
        border-radius: 5px;
    }
    .faq-question {
        font-weight: bold;
        color: #000;
        display: block;
        margin-bottom: 5px;
    }
    .faq-answer {
        color: #555;
        font-size: 15px;
    }

    /* Mobile Tweaks */
    @media screen and (max-width: 768px) {
        #fuji-blog-content {
            font-size: 15px;
            line-height: 1.4;
        }
        #fuji-blog-content h2 {
            font-size: 18px;
            margin-top: 20px;
        }
    }
