
    /* SCOPED CSS: Professional, Responsive, E-E-A-T Optimized */
    #fuji-wirebrush-detail {
        font-family: 'Verdana', 'Segoe UI', Helvetica, sans-serif;
        line-height: 1.6;
        color: #2c3e50;
        font-size: 16px;
        background-color: #fff;
        max-width: 1200px; /* Breite von 1000px auf 1200px erhöht */
        margin: 0 auto;
        padding: 20px;
    }

    /* Trust Badge / Author Byline */
    .fuji-trust-badge {
        display: flex;
        align-items: center;
        background-color: #f8f9fa;
        border-left: 4px solid #c41230;
        padding: 12px 20px;
        margin-bottom: 30px;
        font-size: 14px;
        color: #555;
        border-radius: 0 4px 4px 0;
    }
    .fuji-trust-badge strong {
        color: #111;
        margin-right: 5px;
    }

    /* Headings */
    #fuji-wirebrush-detail h2 {
        font-size: 22px;
        font-weight: 700;
        color: #111;
        border-bottom: 2px solid #eaeaea;
        padding-bottom: 10px;
        margin-top: 40px;
        margin-bottom: 20px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    #fuji-wirebrush-detail h2:first-of-type {
        margin-top: 0;
    }

    #fuji-wirebrush-detail h3 {
        font-size: 18px;
        font-weight: 600;
        color: #c41230;
        margin-top: 25px;
        margin-bottom: 12px;
    }

    /* Paragraphs & Lists */
    #fuji-wirebrush-detail p {
        margin-bottom: 16px;
        text-align: justify;
    }

    #fuji-wirebrush-detail ul {
        padding-left: 22px;
        margin-bottom: 20px;
        list-style: square;
    }

    #fuji-wirebrush-detail li {
        margin-bottom: 10px;
    }

    /* Table Styling */
    .table-responsive {
        overflow-x: auto;
        margin: 25px 0;
        border-radius: 4px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    }
    
    .spec-table {
        width: 100%;
        border-collapse: collapse;
        min-width: 600px;
        font-size: 15px;
    }

    .spec-table td, .spec-table th {
        padding: 12px 15px;
        border: 1px solid #e2e8f0;
        text-align: left;
    }

    .spec-label {
        font-weight: 700;
        background-color: #f8fafc;
        width: 35%;
        color: #1a202c;
    }

    /* Advantage Grid */
    .advantage-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        margin: 30px 0;
    }

    .advantage-card {
        flex: 1 1 calc(50% - 20px);
        background: #fff;
        padding: 20px;
        border-top: 4px solid #c41230;
        border-radius: 6px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.06);
        transition: transform 0.2s ease;
    }

    .advantage-title {
        color: #111;
        font-weight: 700;
        font-size: 17px;
        display: block;
        margin-bottom: 10px;
    }

    /* Images */
    #fuji-wirebrush-detail img {
        max-width: 100%;
        height: auto !important;
        display: block;
        margin: 30px auto;
        border-radius: 6px;
        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;
    }

    /* Safety Box */
    .safety-box {
        background-color: #fffaf0;
        border: 1px solid #ffedd5;
        border-left: 5px solid #f97316;
        padding: 20px 25px;
        border-radius: 4px;
        margin: 30px 0;
    }

    .safety-box h3 {
        color: #c2410c;
        margin-top: 0;
    }

    /* FAQ */
    .faq-wrapper {
        background-color: #f8f9fa;
        padding: 25px;
        border-radius: 8px;
        border: 1px solid #e9ecef;
        margin-top: 40px;
    }

    .faq-item {
        margin-bottom: 20px;
        border-bottom: 1px dashed #dee2e6;
        padding-bottom: 15px;
    }
    
    .faq-item:last-child {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .faq-question {
        display: block;
        color: #111;
        font-weight: 700;
        font-size: 17px;
        margin-bottom: 8px;
    }

    .faq-answer {
        color: #444;
        margin: 0;
    }

    /* CTA Box */
    .cta-box {
        background-color: #ffffff;
        border: 1px solid #e0e0e0;
        box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        padding: 30px;
        text-align: center;
        margin-top: 40px;
        border-radius: 8px;
    }

    .cta-title {
        font-size: 20px;
        font-weight: 700;
        margin-top: 0;
        color: #111;
        margin-bottom: 15px;
    }

    .cta-link {
        display: inline-block;
        background-color: #c41230;
        color: #ffffff !important;
        padding: 10px 20px;
        border-radius: 4px;
        text-decoration: none;
        font-weight: 700;
        margin: 10px;
        transition: background-color 0.3s;
    }
    .cta-link:hover {
        background-color: #a00e26;
    }

    /* Mobile Optimization */
    @media (max-width: 768px) {
        .advantage-card { flex: 1 1 100%; }
        #fuji-wirebrush-detail { padding: 15px; }
        #fuji-wirebrush-detail h2 { font-size: 20px; margin-top: 30px; }
        .spec-table td, .spec-table th { padding: 10px; font-size: 14px; }
    }
