
    /* SCOPED CSS: Professional, Responsive, E-E-A-T Optimized */
    #fuji-sakura-detail {
        font-family: 'Verdana', 'Segoe UI', Helvetica, sans-serif;
        line-height: 1.6;
        color: #333;
        font-size: 16px;
        background-color: #fff;
        max-width: 100%;
    }

    /* Container */
    #fuji-sakura-detail .article-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 10px 20px 40px 20px;
    }

    /* Typography */
    #fuji-sakura-detail h2 {
        font-size: 20px;
        color: #000;
        border-bottom: 2px solid #b71c1c; /* Fuji Red */
        padding-bottom: 8px;
        margin-top: 35px;
        margin-bottom: 15px;
        font-weight: 700;
        text-transform: uppercase;
    }

    #fuji-sakura-detail h2:first-of-type {
        margin-top: 0;
    }

    #fuji-sakura-detail h3 {
        font-size: 18px;
        color: #444;
        margin-top: 25px;
        margin-bottom: 10px;
        font-weight: 600;
        border-left: 4px solid #b71c1c;
        padding-left: 10px;
    }

    #fuji-sakura-detail p {
        margin-bottom: 12px;
        text-align: justify;
    }

    #fuji-sakura-detail ul {
        margin-bottom: 15px;
        padding-left: 20px;
    }

    #fuji-sakura-detail li {
        margin-bottom: 8px;
    }

    /* Grid Layout for Advantages & Products */
    #fuji-sakura-detail .feature-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-bottom: 25px;
    }

    #fuji-sakura-detail .feature-box {
        background: #f9f9f9;
        padding: 20px;
        border: 1px solid #eee;
        border-radius: 4px;
        box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    }

    #fuji-sakura-detail .feature-box strong {
        display: block;
        color: #b71c1c;
        margin-bottom: 8px;
        font-size: 17px;
    }

    /* Table Styling (Responsive) */
    #fuji-sakura-detail .table-wrapper {
        overflow-x: auto;
        margin-bottom: 20px;
        border: 1px solid #ddd;
    }

    #fuji-sakura-detail table {
        width: 100%;
        border-collapse: collapse;
        min-width: 700px;
        font-size: 15px;
    }

    #fuji-sakura-detail th, 
    #fuji-sakura-detail td {
        padding: 12px;
        border: 1px solid #ddd;
        text-align: center;
    }

    #fuji-sakura-detail th {
        background-color: #f1f1f1;
        font-weight: 700;
        color: #000;
    }

    /* Comparison Table */
    #fuji-sakura-detail .comparison-table th {
        background-color: #333;
        color: #fff;
    }

    /* Images - CORE RESPONSIVE FIX */
    /* Forces images to respect screen width on mobile, but allows custom width on PC */
    #fuji-sakura-detail img {
        max-width: 100% !important; 
        height: auto !important;    
        border-radius: 4px;
        margin: 15px auto;
        display: block;
    }

    /* Links */
    #fuji-sakura-detail a {
        color: #b71c1c;
        text-decoration: none;
        font-weight: 600;
        border-bottom: 1px dotted #b71c1c;
    }

    /* Pro Tip Box */
    #fuji-sakura-detail .pro-tip {
        background-color: #e3f2fd;
        border-left: 5px solid #2196f3;
        padding: 15px;
        margin: 20px 0;
        border-radius: 4px;
    }

    /* FAQ */
    #fuji-sakura-detail .faq-item {
        margin-bottom: 15px;
        border-bottom: 1px solid #eee;
        padding-bottom: 10px;
    }

    #fuji-sakura-detail .faq-question {
        font-weight: 700;
        color: #000;
        display: block;
        margin-bottom: 5px;
        font-size: 17px;
    }

    /* Mobile Media Queries */
    @media (max-width: 768px) {
        #fuji-sakura-detail .feature-grid {
            grid-template-columns: 1fr;
        }
        #fuji-sakura-detail h2 {
            font-size: 18px;
            margin-top: 25px;
        }
    }
