
    /* SCOPED CSS: E-E-A-T Optimized & Responsive */
    #fuji-sakura-detail {
        font-family: 'Segoe UI', Verdana, Helvetica, sans-serif;
        line-height: 1.7;
        color: #2c3e50;
        font-size: 16px;
        background: #fff;
        max-width: 100%;
    }
    #fuji-sakura-detail .article-container {
        max-width: 1000px;
        margin: 0 auto;
        padding: 20px 15px 50px 15px;
    }
    
    /* Trust Badge / Author Byline */
    .fuji-trust-badge {
        display: flex;
        align-items: center;
        background-color: #f8f9fa;
        border-left: 4px solid #b71c1c;
        padding: 15px 20px;
        margin-bottom: 35px;
        border-radius: 0 4px 4px 0;
        font-size: 14.5px;
        color: #555;
    }
    .fuji-trust-badge strong {
        color: #111;
        font-size: 16px;
        display: block;
        margin-bottom: 5px;
    }

    /* Headings */
    #fuji-sakura-detail h2 {
        font-size: 24px;
        color: #111;
        border-bottom: 2px solid #b71c1c;
        padding-bottom: 8px;
        margin: 45px 0 20px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    #fuji-sakura-detail h2:first-of-type {
        margin-top: 0;
    }
    #fuji-sakura-detail h3 {
        font-size: 20px;
        color: #b71c1c;
        margin: 30px 0 15px;
        font-weight: 600;
        background-color: #fdf2f3;
        padding: 10px 15px;
        border-radius: 4px;
    }
    #fuji-sakura-detail p {
        margin-bottom: 16px;
        text-align: justify;
    }
    #fuji-sakura-detail ul {
        margin-bottom: 20px;
        padding-left: 22px;
    }
    #fuji-sakura-detail li {
        margin-bottom: 10px;
    }

    /* Feature Grid */
    #fuji-sakura-detail .feature-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-bottom: 30px;
    }
    #fuji-sakura-detail .feature-box {
        background: #fff;
        padding: 22px;
        border-top: 4px solid #b71c1c;
        border-radius: 6px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    }
    #fuji-sakura-detail .feature-box strong {
        display: block;
        color: #111;
        margin-bottom: 10px;
        font-size: 17px;
    }

    /* Table Styling */
    #fuji-sakura-detail .table-wrapper {
        overflow-x: auto;
        margin-bottom: 30px;
        border-radius: 6px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    }
    #fuji-sakura-detail table {
        width: 100%;
        border-collapse: collapse;
        min-width: 600px;
        font-size: 15px;
    }
    #fuji-sakura-detail td, #fuji-sakura-detail th {
        padding: 14px 15px;
        border: 1px solid #e2e8f0;
        text-align: left;
    }
    #fuji-sakura-detail th {
        background: #f8fafc;
        font-weight: 700;
        color: #1a202c;
    }
    #fuji-sakura-detail tr:nth-child(even) {
        background-color: #fafafa;
    }

    /* Images */
    #fuji-sakura-detail img {
        max-width: 100% !important;
        height: auto !important;
        border-radius: 6px;
        margin: 25px auto;
        display: block;
        box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    }
    .img-caption {
        text-align: center;
        font-size: 14px;
        color: #7f8c8d;
        margin-top: -15px;
        margin-bottom: 30px;
        font-style: italic;
    }

    /* Links & Highlights */
    #fuji-sakura-detail a {
        color: #b71c1c;
        text-decoration: none;
        font-weight: 600;
        border-bottom: 1px dotted #b71c1c;
        transition: all 0.2s;
    }
    #fuji-sakura-detail a:hover {
        color: #801313;
        border-bottom: 1px solid #801313;
    }
    #fuji-sakura-detail .pro-tip {
        background: #f0f7ff;
        border-left: 5px solid #0056b3;
        padding: 20px;
        margin: 30px 0;
        border-radius: 4px;
    }

    /* FAQ Section */
    .faq-container {
        background-color: #f8f9fa;
        padding: 25px;
        border-radius: 8px;
        border: 1px solid #e9ecef;
        margin-top: 40px;
    }
    #fuji-sakura-detail .faq-item {
        margin-bottom: 20px;
        border-bottom: 1px dashed #dee2e6;
        padding-bottom: 15px;
    }
    #fuji-sakura-detail .faq-item:last-child {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }
    #fuji-sakura-detail .faq-question {
        font-weight: 700;
        color: #111;
        display: block;
        margin-bottom: 8px;
        font-size: 17px;
    }
    
    /* CTA */
    .cta-btn {
        display: inline-block;
        background-color: #b71c1c;
        color: #fff !important;
        padding: 12px 25px;
        border-radius: 4px;
        text-decoration: none !important;
        font-weight: 700;
        border: none !important;
        box-shadow: 0 4px 12px rgba(183,28,28,0.3);
    }
    .cta-btn:hover {
        background-color: #801313;
    }

    @media(max-width:768px) {
        #fuji-sakura-detail .feature-grid { grid-template-columns: 1fr; }
        #fuji-sakura-detail h2 { font-size: 21px; margin-top: 35px; }
        #fuji-sakura-detail td, #fuji-sakura-detail th { padding: 10px; font-size: 14px; }
    }
