    .container {
      max-width: 1000px;
      margin: 0 auto;
      padding: 40px 20px;
      text-align: center;
      font-family: Lato, sans-serif;
    }

    header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.95rem;
      color: #333;
      width: 85%;
      margin: 0 auto;
      padding: 20px 0px;
    }

    header a {
      text-decoration: none;
      color: #111;
    }


    .title {
      font-size: 1.75rem;
      font-weight: 700;
      margin-bottom: 30px;
    }

    form {
      max-width: 400px;
      margin: 0 auto 30px auto;
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    input[type="text"],
    input[type="email"] {
      padding: 10px 14px;
      border: 1px solid #ccc;
      border-radius: 4px;
      font-size: 1rem;
      outline: none;
    }

    input:focus {
      border-color: #111;
    }

    .toggle-buttons {
      display: flex;
      justify-content: center;
      background: #f0f0f0;
      border-radius: 25px;
      padding: 4px;
      width: 200px;
      margin: 0 auto 50px auto;
    }

    .toggle-buttons button {
      flex: 1;
      border: none;
      border-radius: 20px;
      background: transparent;
      padding: 8px 0;
      font-weight: 700;
      cursor: pointer;
      transition: all 0.2s ease;
    }

    .toggle-buttons button.active {
      background: #fff;
      box-shadow: 0 0 0 1px #ccc;
    }

    .plans {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
      justify-content: center;
    }

    .plan-card {
      border: 1px solid #ddd;
      border-radius: 6px;
      padding: 25px;
      text-align: left;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .plan-card h3 {
      font-size: 1.1rem;
      font-weight: 700;
      margin-bottom: 10px;
    }

    .price {
      font-size: 1.75rem;
      font-weight: 700;
      margin-bottom: 10px;
    }

    .price span {
      font-size: 0.9rem;
      font-weight: 400;
      color: #666;
    }

    ul {
      list-style: none;
      padding: 0;
      margin: 0 0 20px 0;
    }

    ul li {
      margin-bottom: 8px;
      color: #333;
    }

    ul li::before {
      content: "✓";
      margin-right: 8px;
      color: #111;
    }

    .choose-btn {
      display: block;
      text-align: center;
      background: #111;
      color: #fff;
      padding: 10px 0;
      border-radius: 4px;
      text-decoration: none;
      font-weight: 700;
      transition: background 0.2s ease;
    }

    .choose-btn:hover {
      background: #333;
    }

    .footer-text {
      text-align: center;
      margin-top: 20px;
      font-size: 0.95rem;
      color: #444;
    }

    .footer-text a {
      font-weight: 700;
      color: #111;
      text-decoration: none;
    }

    .footer-text a:hover {
      text-decoration: underline;
    }

    .bottom-note {
      font-size: 0.8rem;
      color: #666;
      text-align: left;
      margin: 40px 0 0 20px;
    }