<head>
  <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
</head>

<div class="product-info">
  <ul>
    <li class="info-item">
      <i class="fas fa-truck"></i> <strong>Get it in 3-4 Days</strong> - Usually ships within a day
    </li>
    <li class="info-item">
      <i class="fas fa-sync-alt"></i> <strong>7 Days Exchange</strong> - Exchange within 7 days
    </li>
    <li class="info-item">
      <i class="fas fa-money-bill-wave"></i> <strong>Cash on Delivery</strong> - Available on eligible orders
    </li>
  </ul>
</div><style>/* Container Styling */
  .product-info {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-top: 30px;
  }

  /* Styling for the List */
  .product-info ul {
    list-style-type: none;
    padding-left: 0;
  }

  /* Styling for Each List Item */
  .info-item {
    font-size: 16px;
    margin-bottom: 15px;
    color: #333;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
    padding: 10px;
    border-radius: 8px;
    background-color: #f9f9f9;
  }

  /* Hover Effect for Each List Item */
  .info-item:hover {
    background-color: #2bb9b2;  /* Theme color */
    color: white;
    transform: translateY(-5px);
  }

  /* Styling for Icons */
  .info-item i {
    font-size: 22px;
    margin-right: 15px;
    color: #2bb9b2; /* Theme color for icons */
    transition: color 0.3s ease;
  }

  /* Change Icon Color on Hover */
  .info-item:hover i {
    color: white;
  }

  /* Styling for Strong Text */
  .info-item strong {
    font-weight: bold;
    font-size: 18px;
  }

  /* Add a subtle shadow to the container for better contrast */
  .product-info {
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.1);
  }</style>
				
			
Scroll to Top