.pricing-page {

  .pricing-section-wrapper .pricing-section {
    border-radius: 40px;
  }

  /* Comparison table */

  .comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1.25rem;

    th,td {
      border: 1px solid var(--color-border);
      padding: 0.75rem 1rem;
      text-align: center;
    }

    th:first-child {
      text-align: left;
    }

    thead {
      tr {
        th {
          font-size: 1.5rem;
        }
      }
    }

    tbody {
      tr.category {
        th {
          /*background-color: #f5f9ff;*/
          background-color: rgb(219 234 254 / var(--tw-bg-opacity, 1));
          font-size: 1.5rem;
          font-weight: bold;
          border-radius: 20px 20px 0 0;
        }
      }

      tr {
        th {
          font-weight: normal;
          font-style: italic;
        }
      }

    }
  }

  .comparison-cta {
    margin-top: 4rem;
    margin-bottom: 4rem;
    text-align: center;

    p {
      margin-bottom: 4rem;
      @apply text-lg sm:text-xl lg:text-2xl text-gray-700 mb-4 sm:mb-6 mx-auto max-w-lg sm:max-w-4xl;
    }

    a {
      border-radius: 47px;
      font-size: 24px;
      width: 450px;
      padding: 24px;
    }


    p:last-child {
      margin-top: 5rem;
    }
  }
}