<div class="rates-table-container">
  <table class="rates-table">
    <thead>
      <tr>
        <th>Duration</th>
        <th>Incall</th>
        <th>Outcall</th>
      </tr>
    </thead>
    <tbody>
      <tr>
        <td class="duration">1 Hour</td>
        <td class="price">₹10,000</td>
        <td class="price">₹12,000</td>
      </tr>
      <tr class="popular">
        <td class="duration">2 Hours</td>
        <td class="price">₹18,000</td>
        <td class="price">₹20,000</td>
      </tr>
      <!-- Add more rows -->
      <tr>
        <td class="duration">Full Night</td>
        <td class="price">₹40,000</td>
        <td class="price">₹45,000</td>
      </tr>
    </tbody>
  </table>
</div>