.pricing-table {
      display: flex;
      flex-direction: column;
      max-width: 960px;
      min-width: 640px; 
      margin: 40px auto;
      font-family: sans-serif;
      font-size: 15px;
      border: 1px solid #e0e0e0;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      transition: box-shadow 0.3s ease, transform 0.3s ease;
    }

    .pricing-table:hover {
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
      transform: translateY(-2px);
    }

    .pricing-table .row {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr;
    }

    .pricing-table .header {
      background: #f5faff;
      font-weight: bold;
      font-size: 16px;
      padding: 16px 8px;
      text-align: center;
      border-bottom: 1px solid #f0f0f0;
    }

    .pricing-table .header-row .header:first-child {
      border-top-left-radius: 10px;
    }
    .pricing-table .header-row .header:last-child {
      border-top-right-radius: 10px;
    }
    .pricing-table .row:last-child div:first-child {
      border-bottom-left-radius: 10px;
    }
    .pricing-table .row:last-child div:last-child {
      border-bottom-right-radius: 10px;
    }

    .pricing-table .row div {
      padding: 16px 8px;
      border-bottom: 1px solid #f0f0f0;
      text-align: center;
      background-color: #ffffff;
    }

    .pricing-table .row:last-child div {
      border-bottom: none;
    }

    .pricing-table .row:hover div {
      background-color: #f9f9f9;
    }
    .pricing-table .row:last-child:hover div {
      background-color: transparent;
    }

    .check {
      color: #4caf50;
      font-size: 18px;
    }
    .cross {
      color: #ccc;
      font-size: 18px;
    }

    .price {
      font-size: 20px;
      font-weight: bold;
      color: #f32d21;
      margin-top: 6px;
    }

    .btn-videone {
      background: #4caf50;
      color: white;
      border: none;
      padding: 8px 16px;
      font-weight: bold;
      border-radius: 5px;
      cursor: pointer;
    }

    .section-title {
      text-align: center;
      font-size: 24px;
      margin: 40px 0 20px;
      font-weight: bold;
      font-family: sans-serif;
      color: #101010;
    }
   .table-wrapper {
  width: 100%;
  overflow-x: auto;
}

.table-wrapper::-webkit-scrollbar {
  height: 8px;
}
.table-wrapper::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 4px;
}
