
  /* Global Typography & Layout */
  .fuji-product-page {
    font-family: 'Verdana', 'Segoe UI', Helvetica, sans-serif;
    font-size: 16px; /* Base font size */
    line-height: 1.7;
    color: #333333;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #ffffff;
    box-sizing: border-box;
  }

  /* Strict Heading Constraints */
  .fuji-product-page h2 {
    font-size: 20px; /* Max size constraint applied */
    font-weight: 800;
    color: #111111;
    margin-top: 40px;
    margin-bottom: 15px;
    border-bottom: 2px solid #b71c1c; /* Fuji Red */
    padding-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  .fuji-product-page h2:first-of-type {
    margin-top: 0;
  }
  .fuji-product-page h3 {
    font-size: 18px;
    font-weight: 700;
    color: #b71c1c;
    margin-top: 25px;
    margin-bottom: 12px;
  }

  /* Text & Lists */
  .fuji-product-page p {
    margin-bottom: 18px;
    text-align: justify;
  }
  .fuji-product-page ul {
    margin-bottom: 20px;
    padding-left: 25px;
  }
  .fuji-product-page li {
    margin-bottom: 10px;
  }
  .fuji-product-page a {
    color: #b71c1c;
    text-decoration: none;
    font-weight: 700;
    border-bottom: 1px dotted #b71c1c;
  }
  .fuji-product-page a:hover {
    color: #000000;
    border-bottom: 1px solid #000000;
  }

  /* Flexbox Layouts for Content & Images */
  .fuji-flex-row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
    align-items: flex-start;
  }
  .fuji-flex-col {
    flex: 1;
    min-width: 300px;
  }
  
  /* Images */
  .fuji-product-page img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  }

  /* Highlight & Info Boxes */
  .fuji-info-box {
    background-color: #e8f4f8;
    border-left: 5px solid #0056b3;
    padding: 18px 20px;
    margin: 20px 0;
    border-radius: 0 4px 4px 0;
  }
  .fuji-brand-box {
    background-color: #fff3f3;
    border-left: 5px solid #b71c1c;
    padding: 20px;
    margin: 30px 0;
    border-radius: 0 6px 6px 0;
  }

  /* Advantage Grid - OPTIMIZED FOR 2x2 SYMMETRY */
  .adv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Strictly forces 2 columns */
    gap: 25px;
    margin-bottom: 35px;
  }
  .adv-card {
    background: #f9f9f9;
    padding: 25px;
    border-top: 4px solid #b71c1c; /* Changed to brand red */
    border-radius: 6px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .adv-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  }
  .adv-card strong {
    display: block;
    margin-bottom: 10px;
    color: #111;
    font-size: 17px;
  }

  /* Table Styles */
  .table-wrapper {
    overflow-x: auto;
    margin: 25px 0;
  }
  .tech-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
  }
  .tech-table th, .tech-table td {
    border: 1px solid #dddddd;
    padding: 12px 15px;
    text-align: left;
  }
  .tech-table th {
    background-color: #f4f4f4;
    font-weight: 700;
    color: #111;
  }

  /* FAQ Styles */
  .faq-container {
    background-color: #fafafa;
    padding: 25px;
    border: 1px solid #eeeeee;
    border-radius: 6px;
    margin-bottom: 30px;
  }
  .faq-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
  }
  .faq-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
  }
  .faq-q {
    font-weight: 800;
    color: #111;
    display: block;
    margin-bottom: 8px;
  }

  /* CTA Section */
  .cta-section {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 40px 20px;
    border-radius: 6px;
    text-align: center;
    margin-top: 40px;
  }
  .cta-section h3 {
    color: #ffffff;
    margin-top: 0;
    border: none;
  }
  .cta-section p {
    color: #cccccc;
    margin-bottom: 25px;
    text-align: center;
  }
  .cta-btn {
    display: inline-block;
    background-color: #b71c1c;
    color: #ffffff !important;
    padding: 14px 35px;
    font-weight: 800;
    border-radius: 4px;
    text-transform: uppercase;
    border: none;
    transition: background 0.3s;
  }
  .cta-btn:hover {
    background-color: #8b0000;
  }

  /* Mobile Adjustments */
  @media (max-width: 768px) {
    .fuji-product-page { padding: 15px; }
    .fuji-product-page h2 { font-size: 18px; margin-top: 30px; }
    .adv-grid { grid-template-columns: 1fr; } /* Stacks to 1 column on mobile */
    .cta-section { padding: 30px 15px; }
  }
