     /* --- FEATURE BLOCK STYLES --- */     .fuji-feature-block {         font-family: 'Verdana', sans-serif;         font-size: 16px; /* Restored to standard 16px */         line-height: 1.6; /* Natural, comfortable spacing */         color: #333;         box-sizing: border-box;         max-width: 100%;         margin-bottom: 25px;     }      /* Headlines */     .fuji-feature-title {         font-size: 18px; /* Distinct header size */         font-weight: 700;         color: #C41230;         margin-bottom: 15px; /* Natural spacing */         text-transform: uppercase;         border-bottom: 2px solid #eee;         padding-bottom: 8px;         display: inline-block;     }      /* List Styling */     .fuji-feature-ul {         list-style: none;         padding: 0;         margin: 0 0 25px 0;     }     .fuji-feature-ul li {         margin-bottom: 10px; /* Comfortable gap between items */         padding-left: 26px;         position: relative;     }     .fuji-feature-ul li::before {         content: '✔';         color: #C41230;         font-weight: bold;         position: absolute;         left: 0;         top: 2px;         font-size: 16px;     }          /* Strong tags styling */     .fuji-highlight {         color: #000;         font-weight: 700;     }      /* Application Tags */     .app-tag-container {         display: flex;         flex-wrap: wrap;         gap: 10px;      }     .app-tag {         background-color: #f4f4f4;         border: 1px solid #e0e0e0;         border-radius: 4px;         padding: 6px 14px; /* More breathing room */         font-size: 15px;         color: #555;     }     .app-tag strong {         color: #C41230;     }      /* Mobile Optimization */     @media (max-width: 600px) {         .fuji-feature-block { font-size: 16px; }         .app-tag { width: 100%; text-align: center; }     } 