
    /* Scoped CSS for Content Isolation and E-E-A-T Presentation */
    .fuji-partner-wrapper {
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
        color: #333333;
        line-height: 1.65;
        max-width: 900px;
        margin: 0 auto;
        padding: 20px;
    }

    /* Typography Reset - Base 16px */
    .fuji-partner-wrapper p, 
    .fuji-partner-wrapper li, 
    .fuji-partner-wrapper td, 
    .fuji-partner-wrapper th, 
    .fuji-partner-wrapper span, 
    .fuji-partner-wrapper a {
        font-size: 16px !important;
    }

    /* Headings optimized for hierarchy (Max 20px) */
    .fuji-partner-wrapper h2 {
        font-size: 20px !important;
        font-weight: 700;
        color: #111111;
        margin-top: 35px;
        margin-bottom: 15px;
        padding-bottom: 8px;
        border-bottom: 2px solid #e0e0e0;
        line-height: 1.3;
    }
    
    .fuji-partner-wrapper h2:first-of-type {
        margin-top: 0 !important;
    }

    .fuji-partner-wrapper h3 {
        font-size: 18px !important;
        font-weight: 600;
        margin-top: 25px;
        margin-bottom: 12px;
        color: #222222;
    }

    /* Link styling */
    .fuji-partner-wrapper a {
        color: #b71c1c;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.2s ease;
    }
    .fuji-partner-wrapper a:hover {
        text-decoration: underline;
        color: #d32f2f;
    }

    /* Image styling */
    .fuji-partner-wrapper img {
        max-width: 100%; 
        height: auto;
        display: block;
        margin: 25px auto;
        border-radius: 6px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }

    /* Comparison Table Styling */
    .spec-table {
        width: 100%;
        border-collapse: collapse;
        margin: 25px 0;
        background-color: #ffffff;
        box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    }
    .spec-table th, .spec-table td {
        border: 1px solid #e0e0e0;
        padding: 14px;
        text-align: left;
    }
    .spec-table th {
        background-color: #f8f9fa;
        font-weight: 700;
        color: #111;
    }

    /* Highlight Boxes */
    .benefit-box {
        background-color: #f8f9fa;
        border-left: 5px solid #d32f2f;
        padding: 20px;
        margin: 25px 0;
        border-radius: 0 4px 4px 0;
    }
    
    .safety-box {
        background-color: #e8f5e9;
        border-left: 5px solid #2e7d32;
        padding: 20px;
        margin: 25px 0;
        border-radius: 0 4px 4px 0;
    }

    /* FAQ Section */
    .faq-wrapper {
        margin-top: 45px;
        background-color: #fafafa;
        padding: 25px;
        border-radius: 8px;
        border: 1px solid #eaeaea;
    }
    .faq-item {
        margin-bottom: 20px;
    }
    .faq-item:last-child {
        margin-bottom: 0;
    }
    .faq-question {
        display: block;
        font-weight: 700;
        margin-bottom: 8px;
        color: #111;
    }

    /* Call To Action */
    .cta-container {
        text-align: center;
        margin-top: 40px;
        padding: 30px;
        background: linear-gradient(135deg, #111 0%, #333 100%);
        color: white;
        border-radius: 8px;
    }
    .cta-container p {
        color: white;
        margin-bottom: 20px;
    }
    .cta-button {
        display: inline-block;
        background-color: #d32f2f;
        color: #ffffff !important;
        padding: 14px 30px;
        border-radius: 4px;
        font-size: 18px !important;
        text-decoration: none !important;
        font-weight: bold;
        transition: background-color 0.3s;
    }
    .cta-button:hover {
        background-color: #b71c1c;
    }

    /* Mobile Optimization */
    @media (max-width: 768px) {
        .fuji-partner-wrapper {
            padding: 10px;
        }
        .spec-table {
            display: block;
            overflow-x: auto;
            white-space: nowrap;
        }
        .benefit-box, .safety-box {
            padding: 15px;
        }
        .cta-container {
            padding: 20px;
        }
    }
