    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: Arial, sans-serif;
      line-height: 1.5;
    }

    .mx-auto {
      margin-left: auto;
      margin-right: auto;
    }

    .max-w-7xl {
      max-width: 1280px;
    }

    .px-4 {
      padding-left: 1rem;
      padding-right: 1rem;
    }

    .pt-14 {
      padding-top: 3.5rem;
    }

    .pb-6 {
      padding-bottom: 1.5rem;
    }

    .py-8 {
      padding-top: 2rem;
      padding-bottom: 2rem;
    }

    .text-center {
      text-align: center;
    }

    .text-3xl {
      font-size: 1.875rem;
      line-height: 2.25rem;
    }

    .text-2xl {
      font-size: 1.5rem;
      line-height: 2rem;
    }

    .text-xl {
      font-size: 1.25rem;
      line-height: 1.75rem;
    }

    .text-base {
      font-size: 1rem;
      line-height: 1.5rem;
    }

    .font-extrabold {
      font-weight: 800;
    }

    .font-bold {
      font-weight: 700;
    }

    .text-primary {
      color: #e8e8e9;
    }

    .text-secondary {
      color: #b7b9bc;
    }

    .text-link {
      color: #3182ce;
      text-decoration: none;
    }

    .text-link:hover {
      text-decoration: underline;
    }

    .mt-6 {
      margin-top: 1.5rem;
    }

    .mb-2 {
      margin-bottom: 0.5rem;
    }

    .my-1 {
      margin-top: 0.25rem;
      margin-bottom: 0.25rem;
    }

    .list-inside {
      list-style-position: inside;
    }

    .list-disc {
      list-style-type: disc;
    }

    @media (min-width: 640px) {
      .sm\:px-6 {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
      }

      .sm\:text-4xl {
        font-size: 2.25rem;
        line-height: 2.5rem;
      }

      .sm\:mx-auto {
        margin-left: auto;
        margin-right: auto;
      }

      .sm\:max-w-6xl {
        max-width: 1152px;
      }

      .sm\:text-lg {
        font-size: 1.125rem;
        line-height: 1.75rem;
      }
    }

    @media (min-width: 768px) {
      .md\:mt-2 {
        margin-top: 0.5rem;
      }

      .md\:text-4xl {
        font-size: 2.25rem;
        line-height: 2.5rem;
      }
    }