
  /* Global Styles */
  .fuji-product-container {
    font-family: Verdana, Arial, sans-serif;
    color: #333333;
    line-height: 1.5;
    max-width: 100%;
    margin: 0 auto;
  }

  /* Headings */
  .fuji-product-container h2 {
    font-size: 20px;
    font-weight: bold;
    color: #000000;
    margin-top: 25px;
    margin-bottom: 12px;
    border-bottom: 2px solid #ddd;
    padding-bottom: 8px;
  }

  .fuji-product-container h3 {
    font-size: 18px;
    font-weight: bold;
    color: #444;
    margin-top: 20px;
    margin-bottom: 10px;
  }

  /* Body Text */
  .fuji-product-container p {
    font-size: 16px; 
    margin-bottom: 15px;
    color: #333;
  }

  /* Responsive Images */
  .fuji-responsive-img {
    display: block;
    max-width: 100%;
    height: auto;    
    margin: 15px auto;
    border-radius: 4px;
  }

  /* --- TABLE STYLES (UPDATED) --- */
  .fuji-table {
    width: 100%;       /* Default to full width for mobile */
    max-width: 700px;  /* Limit width on PC for better aesthetics */
    margin: 20px auto; /* Center the table */
    border-collapse: collapse;
    font-size: 16px;
  }
  
  .fuji-table th, .fuji-table td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: center; /* Center align text */
    vertical-align: middle;
  }
  
  .fuji-table th {
    background-color: #f4f4f4;
    font-weight: bold;
  }
  
  /* Text align left for the list column specifically */
  .fuji-table td.text-left {
    text-align: left;
  }

  /* Links */
  .fuji-cta-link {
    color: #d32f2f;
    font-weight: bold;
    text-decoration: underline;
  }

  /* Mobile Optimization */
  @media only screen and (max-width: 768px) {
    .fuji-product-container p {
      margin-bottom: 8px; 
    }
    .fuji-product-container h2 {
      margin-top: 15px;
      font-size: 19px;
    }
    /* Mobile Table Adjustments */
    .fuji-table th, .fuji-table td {
      padding: 8px 4px; 
      font-size: 14px; 
    }
  }
