.pricing-table-section {
    padding: 60px 20px;
    background-color: #f9fbfd;
  }
  
  .section-title {
    text-align: center;
    font-size: 4rem;
    font-family: 'Lora';
    margin-bottom: 30px;
    color: #005b80;
  }
  
  .container {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    flex-wrap: nowrap;        
    overflow-x: auto;         /* Enable horizontal scroll */
    -webkit-overflow-scrolling: touch; 
    scroll-behavior: smooth;
  }
  
  .pricing-table {
    min-width: 300px;        
    flex: 0 0 auto;           /* Prevent shrinking */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
  }
  .pricing-table tr:nth-child(even) {
    background-color: #f1f5f9;
  }
  .pricing-table td {
    padding: 10px 20px;
    font-size: 1.6rem;
    color: #333;
  }
  .btn{
    width: fit-content;
    margin: 3rem auto 1rem;
    padding: 15px 27px;
    font-size: 16px;
    background: #00aeeb;
    border-radius: 15px;
  }
  .btn a{
    text-decoration: none !important;
    color: #fff;
    margin: auto;
  }
  
  @media (max-width: 600px) {
    .section-title {
      font-size: 3rem;
    }
    .pricing-table td {
      font-size: 1.5rem;
    }
    .pricing-table {
        min-width: 300px;
    }
  }
  