  body {
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    padding: 0;
    background: #fff;
    color: #000;
  }

  .pricing-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    text-align: center;
  }

  .pricing-section h1 {
    font-size: 36px;
    font-weight: bold;
    color: #fff;
  }

  .pricing-section .highlight {
    color: #e80000;
  }

  .pricing-section p {
    font-size: 16px;
    color: #ffffff;
    margin-top: 10px;
  }

  .plans-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 40px;
    gap: 20px;
  }
 .plan-box:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 35px rgba(232, 0, 0, 0.3);
    z-index: 2;
  }

  .plan-box {
    background: #fff;
    border: 2px solid #e80000;
    border-radius: 12px;
    padding: 30px 20px;
    flex: 1;
    min-width: 250px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  }
  
  .plan-box.featured {
    background-color: #e80000;
    color: #fff;
    position: relative;
  }
.badge-best {
  position: absolute;
  top: -12px;
  right: 10px;
  background-color: #ffffff;
  color: #000000;
  font-size: 13px;
  font-weight: bold;
  padding: 6px 14px;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  z-index: 10;
}
  .plan-box h3 {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .plan-box.featured h3 {
    color: #fff;
  }

  .plan-price {
    font-size: 28px;
    font-weight: bold;
    margin: 15px 0;
  }

  .plan-box ul {
    list-style: none;
    padding: 0;
    text-align: left;
    font-size: 14px;
  }

  .plan-box ul li {
    margin-bottom: 8px;
  }

  .plan-box .btn {
    margin-top: 15px;
    display: inline-block;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    border: 2px solid;
    border-radius: 6px;
    transition: all 0.3s;
  }

  .plan-box.featured .btn {
    color: #e80000;
    background: #fff;
    border-color: #fff;
  }

  .plan-box .btn {
    color: #e80000;
    border-color: #e80000;
  }

  .plan-box .btn:hover {
    background-color: #e80000;
    color: #fff;
  }

   .comparison-section {
    display: none;
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
    font-family: 'Segoe UI', sans-serif;
  }

  .comparison-section h2 {
    text-align: center;
    font-size: 32px;
    color: #ffffff;
    margin-bottom: 30px;
  }

  .comparison-section h2 .highlight {
    color: #e80000;
  }

  .comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    overflow-x: auto;
    border: 1px solid #ddd;
  }

  .comparison-table thead {
    background-color: #e80000;
    color: #fff;
  }

  .comparison-table th, .comparison-table td {
    padding: 12px 10px;
    text-align: center;
    border: 1px solid #ddd;
    color: #fff;
  }

  .comparison-table td:first-child {
    text-align: left;
    font-weight: bold;
    background-color: #000;
  }

  .yes {
    color: green;
    font-weight: bold;
  }

  .no {
    color: red;
    font-weight: bold;
  }

  @media screen and (max-width: 768px) {
    .comparison-section{
      padding: 10px;
    }
    .table-wrapper {
      .comparison-section{
        padding: auto;
      }
      font-size: 12px;
      overflow-x: auto;
    }
  }