
    /* SCOPED CSS: Prevents affecting other parts of your website */
    #fuji-hf-content {
        font-family: 'Segoe UI', Verdana, Helvetica, sans-serif;
        line-height: 1.6;
        color: #333;
        font-size: 16px;
        background-color: #fff;
    }

    /* Container */
    #fuji-hf-content .article-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
    }

    /* Headings */
    #fuji-hf-content h2 {
        font-size: 24px;
        color: #b22222; /* FUJI Red */
        border-left: 5px solid #b22222;
        padding-left: 15px;
        margin-top: 40px;
        margin-bottom: 20px;
        font-weight: 700;
        text-transform: uppercase;
    }

    #fuji-hf-content h3 {
        font-size: 20px;
        color: #444;
        margin-top: 30px;
        margin-bottom: 15px;
        font-weight: 600;
    }

    /* Text Formatting */
    #fuji-hf-content p {
        margin-bottom: 15px;
        text-align: justify;
        max-width: 960px; /* Optimal reading width */
    }

    #fuji-hf-content ul {
        margin-bottom: 20px;
        padding-left: 20px;
        max-width: 960px;
    }

    #fuji-hf-content li {
        margin-bottom: 8px;
    }

    /* Links */
    #fuji-hf-content a {
        color: #b22222;
        text-decoration: none;
        font-weight: 600;
        border-bottom: 1px dotted #b22222;
        transition: all 0.3s ease;
    }

    #fuji-hf-content a:hover {
        background-color: #fff0f0;
    }

    /* Image Styling */
    #fuji-hf-content .media-wrapper {
        text-align: center;
        margin: 30px 0;
        width: 100%;
    }

    #fuji-hf-content .media-wrapper img {
        max-width: 70%; /* PC: Elegant sizing */
        width: 100%;    /* Responsive base */
        height: auto;
        border-radius: 4px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        border: 1px solid #eee;
    }

    /* Comparison Table */
    #fuji-hf-content .spec-table {
        width: 100%;
        border-collapse: collapse;
        margin: 25px 0;
        font-size: 15px;
        border: 1px solid #ddd;
        max-width: 960px;
    }

    #fuji-hf-content .spec-table th, 
    #fuji-hf-content .spec-table td {
        padding: 12px 15px;
        border: 1px solid #ddd;
        text-align: left;
    }

    #fuji-hf-content .spec-table th {
        background-color: #f8f9fa;
        color: #b22222;
        width: 30%;
    }

    /* Highlight/Feature Box */
    #fuji-hf-content .feature-box {
        background-color: #f9f9f9;
        border-left: 4px solid #555;
        padding: 20px;
        margin: 25px 0;
        max-width: 920px;
    }
    
    #fuji-hf-content .spotlight-box {
        background-color: #fff0f0;
        border: 2px solid #b22222;
        border-radius: 8px;
        padding: 25px;
        margin: 30px 0;
        max-width: 910px;
    }
    
    #fuji-hf-content .spotlight-box h3 {
        color: #b22222;
        margin-top: 0;
        border-bottom: 1px solid #ffcccc;
        padding-bottom: 10px;
    }

    /* FAQ Section */
    #fuji-hf-content .faq-item {
        margin-bottom: 15px;
        border: 1px solid #eee;
        padding: 15px;
        border-radius: 5px;
        max-width: 930px;
    }

    #fuji-hf-content .faq-question {
        font-weight: bold;
        color: #b22222;
        display: block;
        margin-bottom: 5px;
    }

    /* Mobile Optimization */
    @media (max-width: 768px) {
        #fuji-hf-content .article-container { padding: 15px; }
        
        /* Mobile: Full width images */
        #fuji-hf-content .media-wrapper img { max-width: 100%; }
        
        #fuji-hf-content h2 { font-size: 20px; margin-top: 25px; }
        #fuji-hf-content h3 { font-size: 18px; }
        
        /* Mobile Table Scrolling */
        #fuji-hf-content .spec-table { display: block; overflow-x: auto; }
        #fuji-hf-content .spec-table th, 
        #fuji-hf-content .spec-table td { padding: 8px; min-width: 120px; }
    }
