     /* Scoped Styles for Top Feature Section */     .intro-feature-box {         font-family: Verdana, Arial, sans-serif;         font-size: 16px;         line-height: 1.6;         color: #333;         margin-bottom: 30px;         border-bottom: 1px solid #eee; /* Visual separator */         padding-bottom: 20px;     }      .intro-feature-box h3 {         font-size: 18px;         font-weight: 700;         color: #000;         margin-top: 0;         margin-bottom: 12px;     }      .intro-feature-box ul {         margin: 0 0 25px 0;         padding-left: 20px;         list-style-type: disc;     }      .intro-feature-box li {         margin-bottom: 8px;     }      /* Responsive Image Styling */     .spec-img-wrapper {         display: block;         margin-top: 15px;         text-align: left; /* Aligns image to the left (or change to center) */     }      .spec-img-wrapper img {         max-width: 100%;      /* Mobile: Shrink to fit screen width */         height: auto;         /* Maintain aspect ratio */         display: inline-block;                  /* PC Constraints: Prevent image from becoming too tall/huge */         max-height: 400px;             width: auto;                    border-radius: 4px;         box-shadow: 0 2px 6px rgba(0,0,0,0.05); /* Subtle shadow for depth */     }      @media (min-width: 768px) {         .spec-img-wrapper img {             max-width: 600px; /* PC: Cap the width so it's not too wide */         }     } 