
    /* Scoped CSS for Content Isolation & E-E-A-T Enhancements */
    .fuji-select-wrapper {
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
        color: #333;
        line-height: 1.6;
        max-width: 100%;
        margin: 0 auto;
    }

    .fuji-select-wrapper p, 
    .fuji-select-wrapper li, 
    .fuji-select-wrapper td, 
    .fuji-select-wrapper th, 
    .fuji-select-wrapper span {
        font-size: 16px !important;
    }

    .fuji-select-wrapper h2 {
        font-size: 22px !important;
        font-weight: 700;
        color: #111;
        margin-top: 40px;
        margin-bottom: 16px;
        padding-bottom: 8px;
        border-bottom: 2px solid #e0e0e0;
        line-height: 1.3;
    }
    
    .fuji-select-wrapper h2:first-of-type {
        margin-top: 0 !important;
    }

    .fuji-select-wrapper h3 {
        font-size: 18px !important;
        font-weight: 600;
        margin-top: 25px;
        margin-bottom: 12px;
        color: #d32f2f;
    }

    .fuji-select-wrapper a {
        color: #d32f2f;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.2s ease;
    }
    .fuji-select-wrapper a:hover {
        text-decoration: underline;
        color: #b71c1c;
    }

    .fuji-select-wrapper img {
        max-width: 600px; 
        width: 100%;
        height: auto;
        display: block;
        margin: 25px auto;
        border-radius: 6px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }

    .select-table {
        width: 100%;
        border-collapse: collapse;
        margin: 20px 0;
        border: 1px solid #ddd;
    }
    .select-table th, .select-table td {
        border: 1px solid #ddd;
        padding: 14px;
        text-align: left;
    }
    .select-table th {
        background-color: #f4f4f4;
        font-weight: 700;
        color: #111;
    }

    /* E-E-A-T Author Box */
    .fuji-author-box {
        display: flex;
        align-items: center;
        background-color: #f9f9f9;
        border-left: 4px solid #555;
        padding: 15px 20px;
        margin-bottom: 30px;
        border-radius: 0 4px 4px 0;
    }
    .fuji-author-box p {
        margin: 0;
        font-size: 15px !important;
        color: #555;
    }
    .fuji-author-box strong {
        color: #111;
    }

    /* TL;DR Box for Helpful Content */
    .fuji-tldr-box {
        background-color: #fff8e1;
        border: 1px solid #ffecb3;
        padding: 20px;
        border-radius: 6px;
        margin-bottom: 30px;
    }
    .fuji-tldr-box h3 {
        margin-top: 0;
        color: #f57f17;
    }

    .pro-tip {
        background-color: #e8f5e9;
        border-left: 4px solid #4caf50;
        padding: 15px 20px;
        margin: 25px 0;
        border-radius: 0 4px 4px 0;
    }

    /* Safety Warning Box */
    .safety-alert {
        background-color: #ffebee;
        border-left: 4px solid #d32f2f;
        padding: 15px 20px;
        margin: 25px 0;
    }

    .faq-wrapper {
        margin-top: 40px;
        background-color: #fafafa;
        border: 1px solid #eee;
        padding: 25px;
        border-radius: 6px;
    }
    .faq-item {
        margin-bottom: 20px;
        padding-bottom: 15px;
        border-bottom: 1px dashed #ddd;
    }
    .faq-item:last-child {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }
    .faq-question {
        display: block;
        font-weight: 700;
        margin-bottom: 8px;
        color: #111;
        font-size: 17px !important;
    }

    /* CTA Section (Centered) */
    .fuji-cta-section {
        text-align: center;
        margin-top: 50px;
        padding: 40px 20px;
        background-color: #f4f4f4;
        border-radius: 8px;
        border: 1px solid #e0e0e0;
    }
    .fuji-cta-section h3 {
        color: #111;
        margin-top: 0;
        font-size: 22px !important;
        margin-bottom: 15px;
    }
    .fuji-cta-section p {
        margin-bottom: 25px;
        color: #555;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
    .fuji-cta-btn {
        display: inline-block;
        background-color: #d32f2f;
        color: #fff !important;
        padding: 14px 32px;
        border-radius: 4px;
        font-weight: 700;
        text-align: center;
        text-decoration: none !important;
        transition: background-color 0.3s;
    }
    .fuji-cta-btn:hover {
        background-color: #b71c1c;
        box-shadow: 0 4px 8px rgba(211, 47, 47, 0.3);
    }

    @media (max-width: 768px) {
        .fuji-select-wrapper h2 {
            font-size: 20px !important;
        }
        .table-responsive {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
        }
        .select-table {
            min-width: 500px;
        }
    }
