 * {
   box-sizing: border-box;
   font-family: Arial, sans-serif;
 }

 body {
   margin: 0;
   padding: 20px;
   background-color: #f5f5f5;
 }

 .container {
   max-width: 600px;
   margin: 0 auto;
   background-color: white;
   padding: 20px;
   border-radius: 8px;
   box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
 }

 h1 {
   text-align: center;
   color: #333;
 }

 .section {
   margin-bottom: 30px;
   padding-bottom: 20px;
   border-bottom: 1px solid #eee;
 }

 .section h2 {
   color: #444;
   margin-bottom: 20px;
 }

 .form-group {
   margin-bottom: 15px;
 }

 label {
   display: block;
   margin-bottom: 5px;
   font-weight: bold;
   color: #555;
 }

 .help-text {
   display: block;
   margin-top: 5px;
   font-size: 0.8em;
   color: #777;
 }

 input,
 select {
   width: 100%;
   padding: 10px;
   border: 1px solid #ddd;
   border-radius: 4px;
   font-size: 16px;
   font-family: inherit;
   font-size: inherit;
 }

input[type="radio"] {
  width: auto !important;
}

select {
  -webkit-appearance: none;
   -moz-appearance: none;
   appearance: none;
}

 input:focus,
 select:focus {
   outline: none;
   border-color: #f37945;
   box-shadow: 0 0 5px rgba(74, 144, 226, 0.3);
 }

.options div {
  display: flex;
  gap: 10px;
}

 .buttons {
   text-align: center;
   margin-top: 20px;
 }

 button {
   background-color: #f37945;
   color: white;
   border: none;
   padding: 12px 24px;
   font-size: 16px;
   border-radius: 4px;
   cursor: pointer;
   transition: background-color 0.3s;
 }

 button:hover {
   background-color: #c46137;
 }

 .captcha-container {
   margin: 20px 0;
   display: flex;
   justify-content: center;
 }


.plans {
  display: flex;
  justify-content: flex-start;
}

.plan {
  background-color: #fff;
  border: solid 1px #ccc;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 4px 0 rgb(0 0 0 / 8%);
}

.plan .name {
  font-size: 24px;
  font-weight: bold;
}

.plan .desc {
  margin: 10px 0;
}

.plan .price {
  font-size: 20px;
  margin: 10px 0;
  display: inline-block;
}

.plan .price span {
  font-size: 14px;
  margin-left: 1px;
  display: inline-block;
}

.plan .trial {
  margin-top: 15px;
  font-size: 14px;
  font-weight: bold;
}

.plan.selected {
  border: solid 2px #f37945;
}



 /* Make form responsive */

 @media (max-width: 480px) {
   body {
     padding: 10px;
   }
   .container {
     padding: 15px;
   }
   input,
   select,
   button {
     font-size: 14px;
   }
 }