
  /* SCOPED CSS: Compact & Professional Industrial Look */
  #fuji-fs-series {
    font-family: 'Verdana', 'Segoe UI', Helvetica, sans-serif;
    line-height: 1.5; /* Slightly tighter line height */
    color: #333;
    font-size: 16px;
    background-color: #fff;
    max-width: 100%;
    margin: 0 auto;
  }

  /* Container - Removed Top Padding */
  #fuji-fs-series .article-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 40px 20px; /* Top padding is 0 */
  }

  /* Typography - Strict Limit: Headings Max 20px */
  #fuji-fs-series h2 {
    font-size: 20px;
    color: #000;
    border-bottom: 2px solid #ddd;
    padding-bottom: 8px;
    margin-top: 25px; /* Reduced margin */
    margin-bottom: 12px;
    font-weight: 700;
    text-transform: uppercase;
  }

  /* Remove margin from the very first heading */
  #fuji-fs-series h2:first-of-type {
    margin-top: 0 !important;
  }

  #fuji-fs-series h3 {
    font-size: 18px;
    color: #444;
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: 600;
    border-left: 4px solid #d32f2f; /* Fuji Red Accent */
    padding-left: 10px;
  }

  /* Compact Paragraphs */
  #fuji-fs-series p {
    margin-bottom: 10px; /* Reduced from 15px */
    text-align: justify;
  }

  #fuji-fs-series ul {
    margin-bottom: 15px;
    padding-left: 20px;
  }

  #fuji-fs-series li {
    margin-bottom: 5px; /* Tighter list spacing */
  }

  /* Link Styling */
  #fuji-fs-series a {
    color: #d32f2f;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px dotted #d32f2f;
    transition: all 0.3s ease;
  }

  #fuji-fs-series a:hover {
    background-color: #fff0f0;
  }

  /* General Image Styling */
  #fuji-fs-series .media-wrapper {
    text-align: center;
    margin: 20px 0;
    width: 100%;
  }

  #fuji-fs-series .main-img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }

  /* --- PRODUCT GRID (FIXED IMAGE SIZES) --- */
  #fuji-fs-series .product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
  }

  #fuji-fs-series .product-card {
    background: #f9f9f9;
    border: 1px solid #eee;
    padding: 15px;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
  }

  /* Image Container for consistent height */
  #fuji-fs-series .product-img-box {
    height: 300px; /* Fixed height forces alignment */
    display: flex;
    align-items: center; /* Vertical center */
    justify-content: center; /* Horizontal center */
    background: #fff;
    margin: 10px 0;
    border: 1px solid #f0f0f0;
    border-radius: 4px;
    padding: 10px;
  }

  /* Image inside the box */
  #fuji-fs-series .product-img-box img {
    max-height: 100%;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain; /* Ensures image fits without distortion */
  }

  /* Technical Spec Table */
  #fuji-fs-series .tech-table {
    width: 100%;
    border-collapse: collapse;
    margin: 15px 0;
    font-size: 15px;
    border: 1px solid #ddd;
  }

  #fuji-fs-series .tech-table th, 
  #fuji-fs-series .tech-table td {
    padding: 10px;
    border: 1px solid #ddd;
    text-align: left;
  }

  #fuji-fs-series .tech-table th {
    background-color: #f4f4f4;
    font-weight: bold;
    width: 35%;
  }

  /* Highlight Box */
  #fuji-fs-series .highlight-box {
    background-color: #e8f4fd;
    border-left: 5px solid #2196F3;
    padding: 12px;
    margin: 15px 0;
    font-size: 15px;
  }

  /* FAQ Section */
  #fuji-fs-series .faq-item {
    margin-bottom: 10px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
  }

  #fuji-fs-series .faq-question {
    font-weight: bold;
    color: #000;
    display: block;
    margin-bottom: 4px;
  }
  
  #fuji-fs-series .faq-item p {
    margin-bottom: 0;
  }

  /* Mobile Optimization */
  @media (max-width: 768px) {
    #fuji-fs-series .article-container { padding: 0 15px 30px 15px; }
    #fuji-fs-series .product-grid { grid-template-columns: 1fr; }
    #fuji-fs-series .tech-table { display: block; overflow-x: auto; }
    #fuji-fs-series .tech-table th, 
    #fuji-fs-series .tech-table td { min-width: 120px; }
    /* Slightly reduce image box height on mobile */
    #fuji-fs-series .product-img-box { height: 250px; }
  }
