
  /* Global Styles - Professional & Clean */
  .fuji-product-container {
    font-family: Verdana, Arial, sans-serif;
    color: #333333;
    line-height: 1.5; /* Slightly tighter for compact feel */
    max-width: 100%;
    margin: 0 auto;
  }

  /* Headings - Limited to max 20px as requested */
  .fuji-product-container h2 {
    font-size: 20px;
    font-weight: bold;
    color: #000;
    margin-top: 25px;
    margin-bottom: 12px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 6px;
  }

  .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: 12px;
    color: #333;
  }

  /* Lists */
  .fuji-product-container ul {
    margin-bottom: 15px;
    padding-left: 20px;
  }

  .fuji-product-container li {
    font-size: 16px;
    margin-bottom: 8px;
  }

  /* Responsive Images */
  .fuji-responsive-img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 15px auto;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  }

  /* Technical Specs Table */
  .tech-specs-table {
    width: 100%;
    border-collapse: collapse;
    margin: 15px 0;
    font-size: 16px;
  }
  .tech-specs-table th, .tech-specs-table td {
    border: 1px solid #e0e0e0;
    padding: 8px 12px;
    text-align: left;
  }
  .tech-specs-table th {
    background-color: #f9f9f9;
    font-weight: bold;
    width: 35%;
  }

  /* Call to Action Links */
  .fuji-cta-link {
    color: #d32f2f;
    font-weight: bold;
    text-decoration: underline;
  }

  /* Mobile Specific Optimization */
  @media only screen and (max-width: 768px) {
    .fuji-product-container p, 
    .fuji-product-container li {
      margin-bottom: 8px; /* Tighter spacing */
      line-height: 1.4;
    }
    .fuji-product-container h2 {
      margin-top: 15px;
      margin-bottom: 8px;
      font-size: 18px;
    }
    .tech-specs-table th, .tech-specs-table td {
      padding: 6px;
      font-size: 15px;
    }
  }
