<div class="text-center mb-12">
  <h2 class="text-3xl md:text-4xl font-bold text-gray-800 mb-4">Meet Our Expert Team</h2>
  <p class="text-gray-600 max-w-2xl mx-auto">
    We’re a passionate group of Amazon shopping specialists dedicated to curating the best deals, reviewing top products, and helping you make smart purchasing decisions every time.
  </p>
</div>

<!-- Team Members Grid -->
<div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-8">
  <!-- Team Member 1 -->
  <div class="bg-white rounded-lg shadow-md hover:shadow-lg transition-shadow duration-300 overflow-hidden">
    <img 
      src="https://picsum.photos/id/1005/600/400" 
      alt="Sarah Johnson - Senior Product Curator" 
      class="w-full h-64 object-cover"
    >
    <div class="p-6">
      <h3 class="text-xl font-semibold text-gray-800 mb-2">Sarah Johnson</h3>
      <p class="text-sm text-blue-600 font-medium mb-3">Senior Product Curator</p>
      <p class="text-gray-600">
        With 8+ years of e-commerce experience, Sarah handpicks only the highest-rated Amazon products across home, tech, and lifestyle categories. Her goal is to save you time and money.
      </p>
    </div>
  </div>

  <!-- Team Member 2 -->
  <div class="bg-white rounded-lg shadow-md hover:shadow-lg transition-shadow duration-300 overflow-hidden">
    <img 
      src="https://picsum.photos/id/1012/600/400" 
      alt="Michael Davis - Deal Analyst" 
      class="w-full h-64 object-cover"
    >
    <div class="p-6">
      <h3 class="text-xl font-semibold text-gray-800 mb-2">Michael Davis</h3>
      <p class="text-sm text-blue-600 font-medium mb-3">Deal Analyst</p>
      <p class="text-gray-600">
        Michael tracks Amazon’s daily deals, lightning sales, and coupon codes 24/7. He’s our go-to expert for finding unbeatable discounts on popular products.
      </p>
    </div>
  </div>

  <!-- Team Member 3 -->
  <div class="bg-white rounded-lg shadow-md hover:shadow-lg transition-shadow duration-300 overflow-hidden">
    <img 
      src="https://picsum.photos/id/1027/600/400" 
      alt="Emily Chen - Consumer Review Expert" 
      class="w-full h-64 object-cover"
    >
    <div class="p-6">
      <h3 class="text-xl font-semibold text-gray-800 mb-2">Emily Chen</h3>
      <p class="text-sm text-blue-600 font-medium mb-3">Consumer Review Expert</p>
      <p class="text-gray-600">
        Emily tests and reviews products firsthand to provide honest, unbiased feedback. She cuts through the noise to help you choose products that actually deliver on their promises.
      </p>
    </div>
  </div>
</div>

<!-- Team Mission (Optional Extra Section) -->
<div class="mt-16 text-center max-w-3xl mx-auto bg-white p-8 rounded-lg shadow-sm">
  <h3 class="text-2xl font-bold text-gray-800 mb-4">Our Mission</h3>
  <p class="text-gray-600 leading-relaxed">
    We believe online shopping should be simple, transparent, and rewarding. Our team combines industry expertise with real-world testing to bring you only the best Amazon finds – no fluff, no hidden agendas, just honest recommendations to help you shop smarter.
  </p>
</div>