
    /* SCOPED CSS: Fuji Super Raicho (Red Theme) */
    #fuji-raicho-content {
        font-family: 'Verdana', 'Segoe UI', Helvetica, sans-serif;
        line-height: 1.6;
        color: #333;
        font-size: 16px;
        background-color: #fff;
        width: 100%;
    }

    /* Full Width Container */
    #fuji-raicho-content .article-container {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    /* Typography - Fuji Red Theme */
    #fuji-raicho-content h2 {
        font-size: 22px;
        color: #b22222; /* Fuji Industrial Red */
        border-bottom: 2px solid #b22222;
        padding-bottom: 8px;
        margin-top: 25px;
        margin-bottom: 15px;
        font-weight: 700;
        text-transform: uppercase;
        text-align: left;
    }

    #fuji-raicho-content h2:first-of-type { margin-top: 10px; }

    #fuji-raicho-content h3 {
        font-size: 18px;
        color: #333;
        margin-top: 20px;
        margin-bottom: 10px;
        font-weight: 600;
        border-left: 4px solid #b22222;
        padding-left: 10px;
        text-align: left;
    }

    #fuji-raicho-content p {
        margin-bottom: 10px;
        text-align: justify;
    }

    #fuji-raicho-content ul {
        margin-bottom: 15px;
        padding-left: 0;
        list-style: none;
        text-align: left;
    }

    #fuji-raicho-content li {
        margin-bottom: 6px;
        padding-left: 24px;
        position: relative;
    }

    /* Custom Checkmark */
    #fuji-raicho-content li::before {
        content: "✔";
        color: #fff;
        background-color: #b22222;
        font-size: 10px;
        position: absolute;
        left: 0;
        top: 4px;
        width: 16px;
        height: 16px;
        border-radius: 50%;
        text-align: center;
        line-height: 16px;
    }

    #fuji-raicho-content a {
        color: #b22222;
        text-decoration: none;
        font-weight: 600;
        border-bottom: 1px dotted #b22222;
    }

    /* IMAGE STYLING */
    #fuji-raicho-content .media-wrapper {
        display: block;
        text-align: center;
        margin: 15px 0;
        width: 100%;
    }

    #fuji-raicho-content img {
        height: auto;
        border-radius: 4px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.05);
        border: 1px solid #eee;
        display: inline-block;
    }

    /* Standard Size */
    #fuji-raicho-content .img-std { max-width: 500px; width: 100%; }
    
    /* Reduced Size for Charts/Tables */
    #fuji-raicho-content .img-chart-compact { 
        max-width: 450px; /* Limited width for smaller appearance */
        width: 100%; 
    }

    /* Highlight Box */
    #fuji-raicho-content .highlight-box {
        background-color: #fff5f5;
        border-left: 5px solid #b22222;
        padding: 12px;
        margin: 15px 0;
        color: #550000;
    }

    /* Feature Grid (2 Columns) */
    #fuji-raicho-content .feature-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        margin-bottom: 20px;
    }

    #fuji-raicho-content .feature-item {
        background: #fdfdfd;
        padding: 12px;
        border: 1px solid #eee;
        border-radius: 4px;
        text-align: left;
    }

    #fuji-raicho-content .feature-item h4 {
        margin-top: 0;
        color: #b22222;
        font-size: 16px;
        font-weight: 700;
        margin-bottom: 6px;
    }

    /* Data Table - SEO Optimized */
    #fuji-raicho-content .spec-table {
        width: 100%;
        border-collapse: collapse;
        margin: 15px 0;
        font-size: 15px;
        border: 1px solid #ddd;
    }

    #fuji-raicho-content .spec-table th, 
    #fuji-raicho-content .spec-table td {
        padding: 8px;
        border: 1px solid #ddd;
        text-align: center;
    }

    #fuji-raicho-content .spec-table th {
        background-color: #f4f4f4;
        color: #b22222;
        font-weight: 700;
    }

    /* FAQ Section - COMPACT */
    #fuji-raicho-content .faq-item {
        margin-bottom: 6px; /* Reduced gap */
        border: 1px solid #eee;
        padding: 8px 12px; /* Reduced padding */
        border-radius: 4px;
        background: #fff;
    }

    #fuji-raicho-content .faq-question {
        font-weight: 700;
        color: #b22222;
        display: block;
        margin-bottom: 3px; /* Tight gap */
    }
    
    #fuji-raicho-content .faq-item p {
        margin-bottom: 0; /* Remove bottom margin inside answer */
    }

    /* Related Links */
    #fuji-raicho-content .related-links {
        background-color: #f9f9f9;
        padding: 15px;
        margin-top: 25px;
        border-radius: 4px;
        border-top: 3px solid #b22222;
    }

    /* Mobile Optimization */
    @media (max-width: 768px) {
        #fuji-raicho-content .feature-grid { grid-template-columns: 1fr; gap: 10px; }
        #fuji-raicho-content .img-std, #fuji-raicho-content .img-chart-compact { max-width: 100%; margin: 10px auto; }
        #fuji-raicho-content h2 { margin-top: 20px; font-size: 20px; }
    }
