.comparison {
    max-width: 960px;
    margin: 0 auto;
    font-family: "Poppins", sans-serif;
    text-align: center;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  }
  
  .comparison table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    border-radius: 10px;
    overflow: hidden;
  }
  
  .comparison td,
  .comparison th {
    padding: 15px;
    border-bottom: 1px solid #e0e0e0;
  }
  
  .compare-heading {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    padding-top: 12px;
  }
  
  .comparison tbody tr:nth-child(odd) {
    background: #f9f9f9;
  }
  
  .comparison .compare-row {
    background: #f5f5f5;
  }
  
  .comparison .tickblue {
    color: #0078c1;
    font-size: 18px;
    font-weight: bold;
  }
  
  .comparison .tickgreen {
    color: #717c74;
    font-size: 18px;
    font-weight: bold;
  }
  
  .comparison th {
    font-weight: 600;
    /* background: #0078C1; */
    color: white;
    padding: 14px;
  }
  
  .comparison th.compare-heading {
    background: #005b99;
  }
  
  .comparison tr td:first-child {
    text-align: left;
    font-weight: 500;
    color: #555;
  }
  
  .comparison .qbse,
  .comparison .qbo {
    color: #fff;
    padding: 15px;
    font-size: 16px;
    font-weight: bold;
  }
  
  .comparison .qbse {
    background: #f07f7f;
    border-top-left-radius: 10px;
  }
  
  .comparison .qbo {
    background: #606c63;
    border-top-right-radius: 10px;
  }
  
  .comparison .price-info {
    padding: 10px;
    text-align: center;
  }
  
  .comparison .price-was {
    color: #999;
    text-decoration: line-through;
    font-size: 14px;
  }
  
  .comparison .price-now {
    color: #495057;
    font-size: 22px;
    font-weight: bold;
  }
  
  .comparison .price-now span {
    font-size: 28px;
  }
  
  .comparison .price-buy {
    background: #ff5406;
    padding: 12px 20px;
    font-size: 14px;
    display: inline-block;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    text-transform: uppercase;
    font-weight: bold;
    transition: 0.3s;
  }
  
  .comparison .price-buy:hover {
    background: #e04300;
  }
  
  .comparison .price-try {
    font-size: 14px;
    margin-top: 5px;
  }
  
  .comparison .price-try a {
    color: #202020;
    font-weight: 500;
    text-decoration: underline;
  }
  
  @media (max-width: 767px) {
    .comparison td:first-child,
    .comparison th:first-child {
      /* display: none; */
    }
    #marketing span {
      letter-spacing: 0;
    }
    .comparison .tickblue {
      font-size: 13px;
    }
    .comparison .tickgreen {
      font-size: 13px;
    }
    .comparison table {
      display: block;
      overflow-x: auto;
      /* white-space: nowrap; */
    }
    .comparison th,
    .comparison td {
      font-size: 14px;
      padding: 12px;
    }
    .comparison .price-now span {
      font-size: 22px;
    }
  }
  
  @media (max-width: 639px) {
    .comparison .price-buy {
      padding: 10px 15px;
      font-size: 13px;
    }
    .comparison td,
    .comparison th {
      padding: 10px;
    }
    .compare-heading {
      font-size: 16px;
    }
  }
  @media (max-width: 395px) {
    .comparison .tickblue {
      font-size: 11px;
    }
    .comparison .tickgreen {
      font-size: 11px;
    }
    .comparison .price-now span {
      font-size: 16px;
  }
  }