
    /* Global Styles & Responsive Layout */
    .fuji-product-container {
        font-family: Verdana, Geneva, sans-serif;
        font-size: 16px;
        line-height: 1.6;
        color: #333;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px; /* Removed top padding to fix gap */
    }

    /* Headings */
    .fuji-product-container h2 {
        font-size: 20px;
        font-weight: 700;
        color: #000;
        border-bottom: 2px solid #ddd;
        padding-bottom: 10px;
        margin-top: 30px;
        margin-bottom: 15px;
    }

    /* Remove margin from the very first element to strictly remove top space */
    .fuji-product-container > *:first-child {
        margin-top: 0;
    }

    .fuji-product-container h3 {
        font-size: 18px;
        font-weight: 600;
        color: #444;
        margin-top: 25px;
        margin-bottom: 10px;
    }

    /* Text & Lists */
    .fuji-product-container p {
        margin-bottom: 15px;
        text-align: justify;
    }

    .fuji-product-container ul {
        margin-bottom: 15px;
        padding-left: 20px;
    }

    .fuji-product-container li {
        margin-bottom: 8px;
    }

    /* Responsive Tables */
    .fuji-table-wrapper {
        overflow-x: auto;
        margin-bottom: 20px;
    }

    .fuji-spec-table {
        width: 100%;
        border-collapse: collapse;
        min-width: 600px; /* Ensures table doesn't break on small screens */
    }

    .fuji-spec-table th, .fuji-spec-table td {
        border: 1px solid #ddd;
        padding: 12px;
        text-align: center;
    }

    .fuji-spec-table th {
        background-color: #f4f4f4;
        font-weight: bold;
        color: #000;
    }

    /* Images */
    .fuji-product-container img {
        max-width: 100%;
        height: auto;
        display: block;
        margin: 20px auto;
        border-radius: 4px;
    }

    /* Links */
    .fuji-link {
        color: #0056b3;
        text-decoration: underline;
        font-weight: bold;
    }

    /* FAQ Section */
    .fuji-faq-item {
        margin-bottom: 15px;
        border-bottom: 1px solid #eee;
        padding-bottom: 10px;
    }

    .fuji-faq-question {
        font-weight: bold;
        color: #000;
        display: block;
        margin-bottom: 5px;
    }

    /* Mobile Optimization */
    @media (max-width: 768px) {
        .fuji-product-container {
            padding: 10px;
        }
        .fuji-product-container h2 {
            margin-top: 20px;
        }
    }
