
    /* SCOPED CSS for FUJI Sanding Paper Page */
    #fuji-paper-detail {
        font-family: 'Verdana', 'Segoe UI', Helvetica, sans-serif;
        font-size: 16px;
        line-height: 1.6;
        color: #333;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px 40px 15px;
    }

    /* Headings */
    #fuji-paper-detail h2 {
        font-size: 20px;
        color: #000;
        border-bottom: 2px solid #d32f2f; /* Fuji Red */
        padding-bottom: 10px;
        margin-top: 40px;
        margin-bottom: 20px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    #fuji-paper-detail h2:first-of-type { margin-top: 0; }

    #fuji-paper-detail h3 {
        font-size: 18px;
        color: #444;
        margin-top: 25px;
        margin-bottom: 10px;
        font-weight: 700;
    }

    /* Text & Paragraphs */
    #fuji-paper-detail p { margin-bottom: 15px; text-align: justify; }
    #fuji-paper-detail ul { margin-bottom: 20px; padding-left: 20px; }
    #fuji-paper-detail li { margin-bottom: 8px; }

    /* Images - Responsive & Size Limited */
    #fuji-paper-detail img {
        display: block;
        width: 100%;            
        max-width: 600px;      /* STRICT LIMIT */
        height: auto !important;
        margin: 25px auto;
        border-radius: 4px;
        border: 1px solid #eee;
    }
    
    /* Allow factory image to be wider */
    #fuji-paper-detail img.img-wide { max-width: 1000px; }

    /* Feature Grid */
    .fuji-feature-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .fuji-feature-item {
        background: #f9f9f9;
        padding: 20px;
        border-left: 4px solid #d32f2f;
        border-radius: 4px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    }
    
    .fuji-feature-item strong { 
        display: block; 
        margin-bottom: 8px; 
        color: #d32f2f; 
        font-size: 17px;
    }

    /* Grit Guide Table */
    .fuji-table-wrapper {
        overflow-x: auto;
        margin-bottom: 25px;
        border: 1px solid #ddd;
    }
    .fuji-spec-table {
        width: 100%;
        border-collapse: collapse;
        min-width: 600px;
    }
    .fuji-spec-table th, .fuji-spec-table td {
        border: 1px solid #ddd;
        padding: 12px;
        text-align: left;
        font-size: 15px;
    }
    .fuji-spec-table th { 
        background-color: #f2f2f2; 
        width: 30%;
        font-weight: bold; 
        color: #000;
    }

    /* Brand Section (Why Choose Us) */
    .fuji-brand-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-bottom: 30px;
    }
    .fuji-brand-item {
        background: #fff;
        border: 1px solid #eee;
        padding: 15px;
        border-radius: 4px;
    }
    .fuji-brand-item strong { color: #d32f2f; display: block; margin-bottom: 5px; }

    /* Contact Us Box (NEW) */
    .fuji-contact-box {
        background: #f8f9fa;
        border: 1px solid #e9ecef;
        border-top: 4px solid #d32f2f;
        padding: 25px 30px;
        margin: 40px 0;
        border-radius: 4px;
        text-align: center;
        box-shadow: 0 4px 15px rgba(0,0,0,0.04);
    }
    .fuji-contact-box h3 {
        margin-top: 0 !important;
        color: #d32f2f !important;
        font-size: 22px;
        text-transform: uppercase;
    }
    .fuji-contact-box p {
        text-align: center !important;
        color: #555;
        max-width: 900px;
        margin: 0 auto 15px auto;
    }
    .fuji-btn {
        display: inline-block;
        background-color: #d32f2f;
        color: #ffffff !important;
        padding: 14px 32px;
        text-decoration: none !important;
        font-weight: bold;
        font-size: 16px;
        border-radius: 4px;
        margin-top: 15px;
        transition: background-color 0.3s ease, transform 0.2s ease;
    }
    .fuji-btn:hover {
        background-color: #b71c1c;
        transform: translateY(-2px);
    }

    /* FAQ Section - Interactive */
    .fuji-faq-details {
        margin-bottom: 15px;
        border-bottom: 1px solid #eee;
    }
    .fuji-faq-summary {
        font-weight: bold;
        color: #d32f2f;
        cursor: pointer;
        padding: 10px 0;
        list-style: none;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .fuji-faq-summary::after { content: '+'; font-size: 18px; }
    .fuji-faq-details[open] .fuji-faq-summary::after { content: '-'; }
    .fuji-faq-answer { padding: 10px 0 15px 0; color: #555; }

    /* Internal Links */
    .fuji-internal-links {
        margin-top: 40px;
        padding: 20px;
        background: #f0f4f8;
        border-radius: 5px;
    }
    .fuji-internal-links a { color: #d32f2f; text-decoration: underline; font-weight: bold; }

    /* Mobile Optimization */
    @media (max-width: 768px) {
        #fuji-paper-detail { padding: 0 10px 30px 10px; }
        .fuji-feature-grid, .fuji-brand-grid { grid-template-columns: 1fr; }
        #fuji-paper-detail h2 { margin-top: 30px; }
        .fuji-contact-box { padding: 20px; }
    }
