
    /* Scoped CSS for Content Isolation */
    .fuji-case-study {
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
        color: #333;
        line-height: 1.6;
        max-width: 100%;
        margin: 0 auto;
        padding: 0;
    }

    /* Typography Reset */
    .fuji-case-study p, 
    .fuji-case-study li, 
    .fuji-case-study td, 
    .fuji-case-study th, 
    .fuji-case-study span, 
    .fuji-case-study a {
        font-size: 16px !important;
    }

    /* Headings */
    .fuji-case-study h2 {
        font-size: 20px !important;
        font-weight: 700;
        color: #000;
        margin-top: 30px;
        margin-bottom: 12px;
        padding-bottom: 8px;
        border-bottom: 2px solid #f0f0f0;
        line-height: 1.3;
    }
    
    /* Remove top margin for the first header */
    .fuji-case-study h2:first-of-type {
        margin-top: 0 !important;
    }

    .fuji-case-study h3 {
        font-size: 18px !important;
        font-weight: 600;
        margin-top: 25px;
        margin-bottom: 10px;
        color: #444;
    }

    /* Link styling */
    .fuji-case-study a {
        color: #d32f2f;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.2s ease;
    }
    .fuji-case-study a:hover {
        text-decoration: underline;
        color: #b71c1c;
    }

    /* Video Container - Responsive */
    .video-container {
        position: relative;
        padding-bottom: 56.25%; /* 16:9 */
        height: 0;
        margin-bottom: 25px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        border-radius: 8px;
        overflow: hidden;
    }
    .video-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    /* Comparison Table Styling */
    .result-table {
        width: 100%;
        border-collapse: collapse;
        margin: 20px 0;
        border: 1px solid #ddd;
    }
    .result-table th, .result-table td {
        border: 1px solid #ddd;
        padding: 12px;
        text-align: center;
    }
    .result-table th {
        background-color: #f4f4f4;
        font-weight: 700;
    }
    .winner {
        background-color: #e8f5e9; /* Light Green */
        font-weight: bold;
        color: #2e7d32;
    }
    .loser {
        background-color: #ffebee; /* Light Red */
        color: #c62828;
    }

    /* Info Box */
    .insight-box {
        background-color: #e3f2fd; /* Light Blue */
        border-left: 4px solid #2196f3;
        padding: 15px 20px;
        margin: 20px 0;
    }

    /* FAQ Section */
    .faq-wrapper {
        margin-top: 40px;
        border-top: 1px solid #eee;
        padding-top: 20px;
    }
    .faq-item {
        margin-bottom: 15px;
    }
    .faq-question {
        display: block;
        font-weight: 700;
        margin-bottom: 5px;
        color: #000;
    }

    /* Mobile Optimization */
    @media (max-width: 768px) {
        .fuji-case-study {
            padding: 0;
        }
        .fuji-case-study h2 {
            margin-top: 25px;
            font-size: 18px !important;
        }
        .result-table {
            display: block;
            overflow-x: auto;
            white-space: nowrap;
        }
        .insight-box {
            padding: 15px;
        }
    }
