<style>
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      font-family: 'Inter', sans-serif;
    }

    body {
      background-color: #ffffff;
      color: #000000;
      padding: 2rem;
    }

    nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-bottom: 2rem;
    }

    nav .links {
      display: flex;
      gap: 2rem;
      font-size: 1rem;
    }

    nav .brand {
      font-weight: bold;
      font-size: 1.2rem;
    }

    .center-text {
      text-align: center;
      margin-bottom: 2rem;
    }

    .center-text h1 {
      font-size: 2.5rem;
      margin-bottom: 0.5rem;
    }

    .center-text p {
      font-size: 1rem;
      max-width: 600px;
      margin: 0 auto;
    }

    .get {
      display: flex;
      justify-content: space-between;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .plan {
      background-color: #ffffff;
      color: #000000;
      border: 1px solid #ccc;
      border-radius: 1rem;
      padding: 1.5rem;
      width: 22%;
      min-width: 250px;
    }

    .plan h2 {
      font-size: 1.2rem;
      margin-bottom: 0.5rem;
    }

    .plan .price {
      font-size: 1.8rem;
      font-weight: bold;
      margin-bottom: 1rem;
    }

    .plan ul {
      list-style: disc;
      margin-left: 1rem;
      margin-bottom: 1rem;
    }

    .plan button {
      background-color: #e0e0e0;
      border: none;
      border-radius: 0.5rem;
      padding: 0.5rem 1rem;
      font-weight: 600;
      cursor: pointer;
    }


    footer {
      margin-top: 3rem;
      text-align: center;
      font-size: 0.9rem;
      color: #666666;
    }

    @media (max-width: 768px) {
      .plans {
        flex-direction: column;
        align-items: center;
      }

      .plan {
        width: 100%;
      }
    }
  </style>