
    /* SCOPED CSS: Professional, Responsive, E-E-A-T Optimized */
    #fuji-sakura-305-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-305-detail .article-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 10px 20px 40px 20px;
    }

    /* Headings */
    #fuji-sakura-305-detail h2 {
        font-size: 20px; /* Maximum font size */
        color: #000;
        border-bottom: 2px solid #b71c1c; /* Fuji Red */
        padding-bottom: 8px;
        margin-top: 40px;
        margin-bottom: 20px;
        font-weight: 700;
        text-transform: uppercase;
    }

    #fuji-sakura-305-detail h2:first-of-type {
        margin-top: 0;
    }

    #fuji-sakura-305-detail h3 {
        font-size: 18px;
        color: #444;
        margin-top: 25px;
        margin-bottom: 10px;
        font-weight: 600;
        border-left: 4px solid #b71c1c;
        padding-left: 10px;
    }

    /* Intro Section */
    #fuji-sakura-305-detail .intro-flex {
        display: flex;
        flex-wrap: wrap;
        gap: 30px;
        align-items: center;
        margin-bottom: 30px;
        margin-top: 0;
    }
    #fuji-sakura-305-detail .intro-text { flex: 1 1 500px; }
    #fuji-sakura-305-detail .intro-image { flex: 1 1 400px; text-align: center; }

    /* Feature Grid */
    #fuji-sakura-305-detail .feature-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-bottom: 30px;
    }

    #fuji-sakura-305-detail .feature-box {
        background: #f9f9f9;
        padding: 20px;
        border: 1px solid #eee;
        border-radius: 6px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.04);
        transition: transform 0.2s ease;
    }
    
    #fuji-sakura-305-detail .feature-box:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0,0,0,0.08);
    }

    #fuji-sakura-305-detail .feature-box strong {
        display: block;
        color: #b71c1c;
        margin-bottom: 8px;
        font-size: 17px;
    }

    /* Industry Applications List - UPDATED for 2x2 Even Layout */
    #fuji-sakura-305-detail .app-list {
        list-style: none;
        padding: 0;
        display: grid;
        grid-template-columns: repeat(2, 1fr); /* Forces a 2-column grid for even distribution */
        gap: 20px; /* Slightly increased gap for better readability */
    }
    #fuji-sakura-305-detail .app-list li {
        padding-left: 30px;
        position: relative;
        margin-bottom: 10px;
    }
    #fuji-sakura-305-detail .app-list li::before {
        content: '✔';
        position: absolute;
        left: 0;
        color: #b71c1c;
        font-weight: bold;
    }

    /* History & Tech Box */
    #fuji-sakura-305-detail .highlight-box {
        background: #fdfaf6;
        border: 1px solid #e0d4c3;
        padding: 25px;
        border-radius: 6px;
        margin: 30px 0;
    }

    /* Tables */
    #fuji-sakura-305-detail .table-wrapper {
        overflow-x: auto;
        margin-bottom: 20px;
        border: 1px solid #ddd;
    }

    #fuji-sakura-305-detail table {
        width: 100%;
        border-collapse: collapse;
        min-width: 600px;
        font-size: 15px;
    }

    #fuji-sakura-305-detail th, 
    #fuji-sakura-305-detail td {
        padding: 12px;
        border: 1px solid #ddd;
        text-align: center;
    }

    #fuji-sakura-305-detail th {
        background-color: #f1f1f1;
        font-weight: 700;
        color: #000;
    }

    /* Images */
    #fuji-sakura-305-detail img {
        max-width: 100% !important; 
        height: auto !important;    
        border-radius: 4px;
        display: block;
        margin: 0 auto;
    }

    /* Links & CTA */
    #fuji-sakura-305-detail a {
        color: #b71c1c;
        text-decoration: none;
        font-weight: 600;
        border-bottom: 1px dotted #b71c1c;
    }
    
    #fuji-sakura-305-detail .cta-button {
        display: inline-block;
        background-color: #b71c1c;
        color: #fff;
        padding: 15px 30px;
        font-size: 18px;
        font-weight: bold;
        text-align: center;
        border-radius: 4px;
        text-transform: uppercase;
        margin-top: 20px;
        border: none;
        box-shadow: 0 4px 6px rgba(183, 28, 28, 0.2);
    }
    
    #fuji-sakura-305-detail .cta-button:hover {
        background-color: #9a1515;
        color: #fff;
    }

    /* Safety Box */
    #fuji-sakura-305-detail .safety-box {
        background-color: #fff3e0;
        border-left: 5px solid #ff9800;
        padding: 20px;
        margin: 25px 0;
        border-radius: 4px;
    }

    /* FAQ */
    #fuji-sakura-305-detail .faq-item {
        margin-bottom: 15px;
        border-bottom: 1px solid #eee;
        padding-bottom: 10px;
    }

    #fuji-sakura-305-detail .faq-question {
        font-weight: 700;
        color: #000;
        display: block;
        margin-bottom: 5px;
        font-size: 17px;
    }

    /* Mobile Adjustments - Ensures app-list also stacks properly on phones */
    @media (max-width: 768px) {
        #fuji-sakura-305-detail .feature-grid,
        #fuji-sakura-305-detail .app-list {
            grid-template-columns: 1fr;
        }
    }
