
    /* Global Styles for E-E-A-T & Responsive Design */
    .fuji-product-container {
        font-family: 'Segoe UI', Verdana, Arial, sans-serif;
        font-size: 16px;
        line-height: 1.6;
        color: #333;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px 30px 15px;
    }

    /* Headings */
    .fuji-product-container h2 {
        font-size: 24px;
        font-weight: 700;
        color: #111;
        border-bottom: 2px solid #b71c1c;
        padding-bottom: 10px;
        margin-top: 40px;
        margin-bottom: 20px;
        text-transform: uppercase;
    }
    
    .fuji-product-container h2:first-of-type {
        margin-top: 0;
    }

    .fuji-product-container h3 {
        font-size: 20px;
        font-weight: 600;
        color: #b71c1c;
        margin-top: 25px;
        margin-bottom: 15px;
    }

    /* Paragraphs & Lists */
    .fuji-product-container p {
        margin-bottom: 18px;
        text-align: justify;
    }

    .fuji-product-container ul {
        margin-bottom: 20px;
        padding-left: 20px;
        list-style-type: none;
    }

    .fuji-product-container li {
        margin-bottom: 10px;
        position: relative;
        padding-left: 25px;
    }

    .fuji-product-container li::before {
        content: "✓";
        color: #b71c1c;
        position: absolute;
        left: 0;
        font-weight: bold;
    }

    /* Images */
    .fuji-product-container img {
        max-width: 100%;
        height: auto;
        display: block;
        margin: 25px auto;
        border-radius: 6px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    /* Table Styles */
    .fuji-table-wrapper {
        overflow-x: auto;
        margin: 30px 0;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    }

    .fuji-table {
        width: 100%;
        border-collapse: collapse;
        min-width: 600px;
    }

    .fuji-table th, .fuji-table td {
        border: 1px solid #e5e7eb;
        padding: 14px;
        text-align: left;
    }

    .fuji-table th {
        background-color: #f8f9fa;
        font-weight: bold;
        color: #111;
    }
    
    .fuji-table tr:nth-child(even) {
        background-color: #fdfdfd;
    }

    /* FAQ Section */
    .fuji-faq {
        margin-top: 30px;
    }

    .fuji-faq-item {
        background-color: #fff;
        padding: 20px;
        border-left: 4px solid #b71c1c;
        border-radius: 4px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        margin-bottom: 20px;
    }

    .fuji-faq-question {
        font-weight: 700;
        color: #111;
        display: block;
        margin-bottom: 10px;
        font-size: 18px;
    }

    /* Use Case Box */
    .fuji-use-case {
        background-color: #f4f7f6;
        border-left: 5px solid #2e7d32;
        padding: 25px;
        margin: 35px 0;
        border-radius: 0 8px 8px 0;
    }
    
    .fuji-use-case h3 {
        color: #2e7d32;
        margin-top: 0;
    }

    /* Links & Buttons */
    .fuji-link {
        color: #b71c1c;
        text-decoration: none;
        font-weight: 600;
        border-bottom: 1px dotted #b71c1c;
    }
    
    .fuji-cta-box {
        background-color: #111;
        color: #fff;
        padding: 35px;
        text-align: center;
        border-radius: 8px;
        margin-top: 50px;
    }
    
    .fuji-cta-box h3 {
        color: #fff;
        margin-top: 0;
    }
    
    .fuji-cta-btn {
        display: inline-block;
        background-color: #b71c1c;
        color: #fff;
        padding: 15px 30px;
        border-radius: 4px;
        font-weight: bold;
        text-decoration: none;
        margin-top: 15px;
        transition: background-color 0.3s;
    }
    
    .fuji-cta-btn:hover {
        background-color: #d32f2f;
    }

    /* Mobile Optimization */
    @media (max-width: 768px) {
        .fuji-product-container { padding: 10px; }
        .fuji-product-container h2 { font-size: 20px; margin-top: 30px; }
        .fuji-cta-box { padding: 25px; }
    }
