/* Base styles */
body {
  background: #804d8a;
  font-family: "Courier New", Courier, monospace;
  color: white;
  padding: 10px;
  text-align: center;
  user-select: none;
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10+ */
}

/* Typography */
h1 {
  font-size: 4rem;
  font-weight: 1000;
  max-width: 100%;
  text-align: center;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

.description {
  text-align: center;
  margin: 0 auto;
  font-size: 1.25rem;
  width: 500px;
}

/* Utility classes */
.allow-selection {
  user-select: text !important;
}

/* Links and Buttons */
.link-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.link-wrapper a {
  display: inline-block;
  margin: 15px;
  padding: 15px 30px;
  font-size: 18px;
  text-decoration: none;
  color: #fff;
  background: #363636;
  border-radius: 50px;
  transition: transform 0.3s, box-shadow 0.3s;
  font-weight: 500;
}

.link-wrapper a:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.link {
  width: 200px;
}

/* Images */
.img-wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.im {
  border: 16px solid rgb(41, 41, 41);
  border-radius: 10px;
  width: 400px;
}

/* Pricing specific styles */
.pricing-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  padding: 1rem;
  font-family: sans-serif;
}
.orange {
  color: orange;
}
.pricing-card {
  flex: 1 1 300px;
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 1rem;
  max-width: 400px;
  background: rgba(255, 255, 255, 0.1);
  transition: transform 0.2s ease;
}

/* Package selection styles */
.package-selection {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 20px 0;
}

.package-selection label {
  display: inline-block;
  padding: 10px 20px;
  font-size: 1.2rem;
  font-weight: bold;
  color: #fff;
  background-color: #804d8a;
  border: 2px solid #804d8a;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.package-selection label:hover {
  background-color: #a06bb5;
  border-color: #a06bb5;
}

.package-selection input[type="radio"] {
  display: none;
}

.package-selection input[type="radio"]:checked + label {
  background-color: #ff923e;
  border-color: #ff923e;
  color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Pricing card radio buttons */
.pricing-card form label {
  display: flex;
  align-items: center;
  margin: 10px 0;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 10px;
  border: 2px solid #ddd;
  border-radius: 8px;
}

.pricing-card form label:has(input[type="radio"]:checked) {
  background-color: white;
  color: black;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.pricing-card form label:hover {
  background-color: #f0f0f0;
  border-color: #ff923e;
  color: black;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.pricing-card form input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #ff923e;
  border-radius: 50%;
  outline: none;
  margin-right: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.pricing-card form input[type="radio"]:checked {
  background-color: #ff923e;
  border-color: #ff923e;
}

.pricing-card form input[type="radio"]:checked::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background-color: white;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Additional components */
.must-read {
  font-size: 1rem;
}

.must-read input {
  width: 20px;
  height: 20px;
}

.must-read a {
  color: wheat;
  font-size: 1.1rem;
  text-decoration: underline;
}

.must-read a:hover {
  color: #ffd700;
}

.payment-guarantees i {
  font-size: 3rem;
}

.features-grid i {
  font-size: 5rem;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  width: 500px;
  margin: 0;
  gap: 20px;
}
.grid-item {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}
.features-grid-container {
  display: flex;
  justify-content: center;
  width: 100%;
}

.action-button {
  display: inline-block;
  margin: 15px;
  padding: 20px 35px;
  font-size: 23px;
  text-decoration: none;
  color: white;
  background: green;
  border-radius: 10px;
  transition: transform 0.3s, box-shadow 0.3s;
  font-weight: 600;
}

.taxes-note {
  font-size: 0.8rem;
}

#website-version {
  font-family: "Times New Roman", Times, serif;
  font-size: 7px;
  text-align: center;
}
#email-form input {
  padding: 10px;
  font-size: 1.2rem;
  border-radius: 5px;
  border: 1px solid #ccc;
  width: 400px;
}

.small-note {
  font-size: 0.7rem;
}

/* Media Queries */
@media only screen and (max-width: 600px) {
  .link-wrapper {
    flex-direction: column;
  }

  .description {
    width: 300px;
    font-size: 1rem;
  }

  h1 {
    font-size: 3rem;
  }

  .img-wrapper img {
    width: 275px;
  }

  .features-grid {
    width: 300px;
    grid-template-columns: 1fr; /* Stack items vertically on mobile */
  }

  #email-form input {
    width: 250px;
  }
}
