<div class="max-w-5xl mx-auto px-6">
  <h3 class="text-2xl font-bold text-gray-800 mb-4">How It Helps You</h3>
  <p class="text-gray-600 leading-relaxed mb-10 text-base">
    Skip the guesswork and ensure your new couch will fit in your room layout and doorways.
  </p>

  <div class="grid md:grid-cols-2 gap-6">
    <div class="bg-gray-50 p-6 rounded-2xl shadow-sm border hover:shadow-md transition-all duration-200 flex gap-4 items-start">
      <div class="bg-yellow-100 rounded-full p-3">
        <i data-lucide="sofa" class="w-6 h-6 text-yellow-500"></i>
      </div>
      <div>
        <h4 class="font-semibold text-gray-800 text-lg mb-1">Room Fit Check</h4>
        <p class="text-sm text-gray-600">
          Compare your room size and layout with sofa dimensions to ensure the right fit.
        </p>
      </div>
    </div>

    <div class="bg-gray-50 p-6 rounded-2xl shadow-sm border hover:shadow-md transition-all duration-200 flex gap-4 items-start">
      <div class="bg-red-100 rounded-full p-3">
        <i data-lucide="move-horizontal" class="w-6 h-6 text-red-500"></i>
      </div>
      <div>
        <h4 class="font-semibold text-gray-800 text-lg mb-1">Doorway Clearance</h4>
        <p class="text-sm text-gray-600">
          Check if the couch can be moved through your doorways and hallways before delivery.
        </p>
      </div>
    </div>
  </div>
</div>