
    /* Global Styles for Responsive Design */
    .fuji-product-container {
        font-family: Verdana, Arial, sans-serif;
        font-size: 16px;
        line-height: 1.5;
        color: #333;
        max-width: 1200px;
        margin: 0 auto;
    }

    /* Headings */
    .fuji-product-container h2 {
        font-size: 20px;
        font-weight: 700;
        color: #000;
        border-bottom: 2px solid #ddd;
        padding-bottom: 8px;
        margin-top: 25px;
        margin-bottom: 12px;
    }

    .fuji-product-container h3 {
        font-size: 18px;
        font-weight: 600;
        color: #444;
        margin-top: 20px;
        margin-bottom: 10px;
    }

    /* Paragraphs - Tight spacing for mobile */
    .fuji-product-container p {
        margin-bottom: 10px;
        text-align: justify;
    }

    /* Lists */
    .fuji-product-container ul {
        margin-bottom: 15px;
        padding-left: 20px;
    }

    .fuji-product-container li {
        margin-bottom: 5px;
    }

    /* Images - Responsive */
    .fuji-product-container img {
        max-width: 100%;
        height: auto;
        display: block;
        margin: 15px auto;
        border-radius: 4px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    /* Table Styles */
    .fuji-table-wrapper {
        overflow-x: auto;
        margin-bottom: 20px;
    }

    .fuji-table {
        width: 100%;
        border-collapse: collapse;
        min-width: 600px; /* Ensures table doesn't break on small screens */
    }

    .fuji-table th, .fuji-table td {
        border: 1px solid #ddd;
        padding: 10px;
        text-align: left;
    }

    .fuji-table th {
        background-color: #f4f4f4;
        font-weight: bold;
        color: #000;
    }

    /* FAQ Section */
    .fuji-faq {
        background-color: #f9f9f9;
        padding: 15px;
        border-radius: 5px;
        margin-top: 20px;
    }

    .fuji-faq-item {
        margin-bottom: 15px;
    }

    .fuji-faq-question {
        font-weight: bold;
        color: #000;
        display: block;
        margin-bottom: 5px;
    }

    /* Links */
    .fuji-link {
        color: #0056b3;
        text-decoration: underline;
        font-weight: bold;
    }

    /* Mobile Optimization */
    @media (max-width: 768px) {
        .fuji-product-container {
            padding: 10px;
        }
        .fuji-product-container h2 {
            margin-top: 20px;
            font-size: 19px;
        }
    }
