     /* Scoped CSS for Product Features Section */     #fuji-product-features {         font-family: 'Verdana', 'Segoe UI', Helvetica, sans-serif;         line-height: 1.5; /* Slightly reduced line-height for compactness */         color: #333;         font-size: 16px;         background: #fff;         max-width: 100%;     }      /* Headings - Reduced Margins */     #fuji-product-features h3 {         font-size: 18px;         color: #b22222; /* FUJI Red */         border-left: 4px solid #b22222;         padding-left: 10px;         margin-top: 10px; /* Reduced from 20px */         margin-bottom: 8px; /* Reduced from 15px */         font-weight: 700;         text-transform: uppercase;     }      /* Feature Lists - Compact Spacing */     #fuji-product-features ul {         margin-bottom: 12px; /* Reduced from 20px */         padding-left: 20px;         list-style-type: disc;     }      #fuji-product-features li {         margin-bottom: 4px; /* Reduced from 10px to make lists tighter */         color: #333;     }      #fuji-product-features strong {         color: #000;         font-weight: 700;     }      /* Image Styling - Reduced Margins */     #fuji-product-features .spec-image-wrapper {         margin: 15px 0; /* Reduced from 25px */         text-align: left;     }      #fuji-product-features img {         max-width: 600px;          width: 100%;               height: auto;         border: 1px solid #eee;         border-radius: 4px;         box-shadow: 0 2px 8px rgba(0,0,0,0.05);     }      /* Specification Text Box - Compact */     #fuji-product-features .spec-text {         background-color: #f9f9f9;         padding: 10px 15px; /* Reduced padding */         border-radius: 4px;         border-left: 4px solid #555;         font-weight: bold;         margin-bottom: 10px;         display: inline-block;         width: 100%;         box-sizing: border-box;     }      /* Mobile Optimization */     @media (max-width: 768px) {         #fuji-product-features h3 { font-size: 17px; margin-top: 15px; }         #fuji-product-features li { font-size: 15px; }         #fuji-product-features img { max-width: 100%; }     } 