
    /* CSS Reset & Basic Styling */
    .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: 10px;
    }
    
    /* Typography Constraints */
    .fuji-product-container h1 { font-size: 20px; font-weight: bold; color: #000; margin-bottom: 15px; border-bottom: 2px solid #3598db; padding-bottom: 5px; }
    .fuji-product-container h2 { font-size: 19px; font-weight: bold; color: #000; margin-top: 30px; margin-bottom: 15px; }
    .fuji-product-container h3 { font-size: 18px; font-weight: bold; color: #444; margin-top: 20px; }
    .fuji-product-container p { margin-bottom: 15px; }
    
    /* Responsive Images */
    .fuji-product-container img {
        max-width: 100%;
        height: auto;
        display: block;
        margin: 20px auto;
        border-radius: 4px;
    }

    /* Responsive Tables */
    .table-wrapper {
        overflow-x: auto;
        margin-bottom: 20px;
    }
    .fuji-spec-table {
        width: 100%;
        border-collapse: collapse;
        min-width: 600px; /* Ensures table doesn't squish too much on mobile */
    }
    .fuji-spec-table th, .fuji-spec-table td {
        border: 1px solid #ddd;
        padding: 12px;
        text-align: center;
        font-size: 15px;
    }
    .fuji-spec-table th {
        background-color: #f4f4f4;
        font-weight: bold;
        color: #000;
    }
    .fuji-spec-table tr:nth-child(even) { background-color: #f9f9f9; }

    /* Feature Grid */
    .feature-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 20px;
    }
    @media (min-width: 768px) {
        .feature-grid { grid-template-columns: 1fr 1fr; }
    }
    .feature-item {
        background: #fdfdfd;
        border-left: 4px solid #3598db;
        padding: 15px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    }
    
    /* Links */
    .fuji-link {
        color: #3598db;
        text-decoration: none;
        font-weight: bold;
    }
    .fuji-link:hover { text-decoration: underline; }

    /* Highlight Box */
    .highlight-box {
        background-color: #eef7fc;
        padding: 15px;
        border-radius: 5px;
        margin: 20px 0;
    }
