body {
  width: 100vw;
  overflow-x: hidden;
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: #213721;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

* {
  box-sizing: border-box;
}

.step-section {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  width: 100%;
  padding: 120px 80px;
  gap: 30px;
}

.step-section-header {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
}

.step-section-header h2 {
  font-size: 28px;
  font-weight: 400;
  color: #d97e00;
}

.step-section-header h1 {
  font-size: 40px;
  font-weight: 600;
}

.step-1-input-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  width: 100%;
  align-items: start;
  justify-content: start;
  gap: 25px;
}

.step-1-input-box {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  width: 100%;
  gap: 10px;
}

.step-1-input-box label {
  font-size: 20px;
  font-weight: 600;
}

.step-1-input-box input {
  width: 100%;
  padding: 10px;
  border: 1px solid #c8d8c0;
  border-radius: 8px;
  color: #213721;
  padding: 15px 20px;
  font-size: 16px;
  background-color: #f2f6ef80;
  outline: none;
}

.step-1-radio-wrapper {
  display: flex;
  align-items: start;
  justify-content: start;
  width: 100%;
  border-top: 1px solid #c8d8c0;
  height: max-content;
}

.options-box {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  width: max-content;
  padding: 30px 0;
  gap: 20px;
}

.options-box label:first-child {
  font-size: 20px;
  font-weight: 600;
}

.radio-options {
  display: flex;
  align-items: start;
  justify-content: start;
  width: 100%;
  flex-direction: column;
  gap: 20px;
}

.radio-option {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 20px;
}

.radio-option label {
  font-size: 15px;
  font-weight: 400;
}

.radio-option input[type='radio'] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid #c8d8c0;
  border-radius: 50%;
  outline: none;
  margin: 0;
  position: relative;
  cursor: pointer;
}

.radio-option input[type='radio']:checked {
  border-color: #acc79f;
}

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

.radio-option {
  cursor: pointer;
  transition: all 0.2s ease;
}

.radio-option:hover input[type='radio'] {
  border-color: #213721;
  box-shadow: 0 0 0 1px rgba(33, 55, 33, 0.2);
}

.radio-option label {
  cursor: pointer;
  user-select: none;
}

.border-straight {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 32%;
  width: 1px;

  background: linear-gradient(to bottom, #c8d8c0 60%, transparent);
}

.orange-line {
  background-color: #d97f00c2;
  width: 100%;
  height: 3px;
}

/* Add styles for the budget and referral section */
.budget-referral-container {
  display: flex;
  flex-direction: row;
  gap: 30px;
}

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

.form-group h2 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}

.budget-input {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 5px;
  overflow: hidden;
  background-color: #f2f6ef80;
}

.currency-symbol {
  background-color: #c8d8c0;
  color: #333;
  padding: 10px 15px;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.budget-input input {
  flex: 1;
  padding: 0 15px;
  border: none;
  font-size: 16px;
  outline: none;
  background-color: transparent;
}

.select-container {
  position: relative;
}

.select-container select {
  width: 100%;
  padding: 11px;
  border: 1px solid #ddd;
  border-radius: 5px;
  appearance: none;
  font-size: 16px;
  background-color: #f2f6ef80;

  cursor: pointer;
}

.select-container::after {
  content: '';
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid #333;
  pointer-events: none;
}

.submit-button {
  background-color: #6ea959;
  color: white;
  border: none;
  border-radius: 5px;
  padding: 15px 30px;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background-color 0.3s;
}

.submit-button:hover {
  background-color: #54a736;
}

.submit-button svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 768px) {
  .step-1-input-container {
    grid-template-columns: 1fr;
  }

  .step-1-radio-wrapper {
    flex-direction: column;
  }

  .border-straight {
    right: 0;
    left: auto;
  }

  .step-section {
    padding: 60px 20px;
  }

  .budget-referral-container {
    flex-direction: column;
  }

  .budget-input {
    width: 100%;
  }
}

/* result content */
.result-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.section-padding {
  padding: 40px 100px;
}

.top-3-section {
  display: flex;
  flex-direction: column;
  gap: 50px;
  width: 100%;
}

.top-3-section h1:first-child {
  font-size: 40px;
  font-weight: 600;
}

.top-3-cards {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

.top-3-card {
  display: flex;
  flex-direction: column;
  padding: 24px;
  gap: 24px;
  background-color: #f2f6f0;
  border: 1px solid #c8d8c0;
  border-radius: 12px;
  width: 100%;
}

.top-3-card h1 {
  font-size: 30px !important;
  font-weight: 400 !important;
}

.top-3-card img {
  width: 100%;
  background-color: white;
  object-fit: contain;
  max-height: 400px;
  min-height: 200px;
  object-fit: cover;
}

.top-3-card-bottom {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  height: 100%;
}

.top-3-card-bottom p {
  color: #5f7d5d;
}

.top-3-card-bottom a {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  background-color: #54a736;
  padding: 10px 20px;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  color: white;
  cursor: pointer;
  text-decoration: none;
  margin-top: auto;
}

.add-on {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 25px;
  align-items: center;
}

.add-on h2 {
  color: #333;
  font-size: 20px;
  font-weight: 600;
  text-align: end;
}

.add-on-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.add-on-card {
  flex: 1;
  width: 100%;
  background-color: #f2f6f0;
  border: 1px solid #c8d8c0;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.add-on-info h3 {
  font-size: 16px;
  font-weight: 600;
  color: #333;
}

.add-on-info p {
  font-size: 12px;
  color: #666;
}

.add-on-price-button {
  background-color: #6ab04c;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s;
}

.add-on-price-button:hover {
  background-color: #5a9f3c;
}

.recomended-packages {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 40px;
}

.recomended-packages h1:first-child {
  font-size: 40px;
}

.recomended-packages-banner {
  display: flex;
  align-items: center;
  padding: 20px;
  gap: 40px;
  background-color: #f2f6f0;
  border: 1px solid #c8d8c0;
  border-radius: 12px;
}

.recomended-packages-banner-description {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 35%;
}

.recomended-packages-banner-description h2 {
  font-size: 28px;
}

.recomended-packages-banner-description span {
  font-size: 18px;
}

.recomended-packages-banner-description p {
  font-size: 14px;
  color: #5f7d5d;
}

.recomended-packages-banner-description button {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  background-color: #54a736;
  padding: 10px 20px;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  color: white;
  cursor: pointer;
}

.recomended-packages-cards-wrapper {
  display: flex;
  gap: 10px;
  width: 65%;
  align-items: flex-start;
}

.recomended-packages-card {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 5px;
  background-color: white;
  border: 1px solid #c8d8c0;
  border-radius: 12px;
  overflow: hidden;
  padding: 10px;
  height: 280px;
}

.recomended-packages-card .recomended-packages-card-image {
  width: 100%;
  object-fit: contain;
  height: 100px;
  background-color: white;
  display: flex;
  align-items: end;
  justify-content: start;
}

.recomended-packages-card-image img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.recomended-packages-card span {
  font-size: 15px;
}

.recomended-packages-card p {
  font-size: 12px;
  color: #5f7d5d;
  font-weight: 300;
}

.top-3-therapy {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.top-3-therapy h1:first-child {
  font-size: 40px;
}

.top-3-therapy-wrapper {
  display: flex;
  gap: 30px;
  width: 100%;
}

.top-3-therapy-card {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.top-3-therapy-card h1 {
  padding: 30px 0;
  border-bottom: 2px solid #c8d8c0;
  font-size: 24px !important;
}

.top-3-therapy-card-list {
  display: grid;
  grid-template-columns: 1fr 2fr 0.6fr;
  align-items: center;
  padding: 30px 0;
  border-bottom: 1px solid #c8d8c0;
  gap: 10px;
}

.top-3-therapy-card-list-name {
  font-size: 16px;
  font-weight: 600;
  color: #3c5e39;
  text-align: center;
}

.top-3-therapy-card-list-info {
  font-size: 12px;
  font-weight: 400;
  color: #6ea959;
  text-align: center;
}

.top-3-therapy-card-list-button {
  background-color: #54a736;
  color: white;
  border: none;
  border-radius: 5px;
  padding: 10px;
  font-size: 12px;
  cursor: pointer;
  text-align: center;
}

.promo-section {
  width: 100%;
}

.promo-container {
  width: 100%;
  background-color: #d97e00;
  border-radius: 12px;
  padding: 40px;
  color: white;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.promo-left-section {
  flex: 1;
  min-width: 300px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.promo-right-section {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.promo-left-section h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 30px;
  max-width: 600px;
}

.promo-description {
  font-size: 1.1rem;
  margin-top: 20px;
}

.promo-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.promo-feature-icon {
  font-size: 1.5rem;
}

.promo-cta-button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: white;
  color: #333;
  padding: 15px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  margin-top: 10px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
}

.promo-cta-button:hover {
  background-color: #f8f8f8;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.promo-arrow-icon {
  font-size: 1.5rem;
  color: #d97e00;
}

.health-section {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding-top: 50px;
  background: linear-gradient(180deg, #f2f6f0 0%, #ffffff 100%);
}

.health-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

.health-card {
  width: 100%;
  padding: 20px;
  border-radius: 16px;
  overflow: hidden;
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border: 1px solid #c8d8c0;
}

.health-card-image {
  background-color: #f2f6f0;
  height: 240px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.health-tip-circle {
  width: 100px;
  height: 100px;
  background-color: #c8d8c0;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 5px;
}

.health-tip-label {
  font-size: 16px;
  color: #5f7d5d;
  margin-bottom: 0;
}

.health-tip-number {
  font-size: 48px;
  font-weight: bold;
  color: #333;

  line-height: 1;
}

.health-card-content {
  padding: 24px 32px;
  text-align: center;
}

.health-card-text {
  color: #5f7d5d;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
}

@media (max-width: 768px) {
  .add-on {
    display: flex;
  }

  .add-ons-grid,
  .add-on {
    flex-direction: column;
  }

  .add-on-card {
    width: 100%;
  }

  .recomended-packages-card {
    width: 200px !important;
    flex: auto;
  }

  .top-3-therapy-wrapper {
    flex-direction: column;
  }

  .section-padding {
    padding: 40px 20px;
  }
  .health-wrapper {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 1024px) {
  .top-3-cards {
    grid-template-columns: 1fr;
  }

  .recomended-packages-banner {
    flex-direction: column;
  }

  .recomended-packages-banner-description {
    width: 100%;
  }

  .recomended-packages-cards-wrapper {
    width: 100%;
    flex-wrap: wrap;
  }
}
