body {
  font-family: 'Helvetica Neue', sans-serif;
  background-color: #F3F3F3;
  margin: 0;
  padding: 0;
}

.hero {
  background-image: url('../img/hp_bg-scaled.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  min-height: 100vh;
  margin: 0 auto;
  justify-content: center;
}



.header {
  background-color: #fff;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
}

.header .container{
  display: flex;
  justify-content: center;
  align-items: center;
}
.header .logo {
width: 100%;
}
.header .logo img {
  height: 30px;
  width: auto;
}

.hero-left {
  color: #2A295E;
}

.hero-title {
  font-family: "Helvetica Neue", Sans-serif;
  font-size: 3.2rem;
  font-weight: 300;
  line-height: 3.5rem;
  color: #2A295E;
  margin: 0;
}

.hero-subtitle {
  font-family: "Helvetica Neue", Sans-serif;
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 2rem;
  color: #333;
}

.hero .button {
  background-color: #F5802E;
  padding: 12px 24px;
  border-radius: 50px 50px 50px 50px;
  width: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero .button > a {
  color: #FFFFFF;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 300;
  font-family: "Helvetica Neue", Sans-serif;
}

.hero-right img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

.container {
  display: flex;
  max-width: 1300px;
}



.column-right img {
  max-width: 100%;
  height: auto;
}

.column {
  width: 50%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}



.form {
  display: flex;
  justify-content: center;
}

.form .container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 20px;
}

form {
  display: flex;
  flex-direction: column;
}

.form-step {
  display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.form-step label {
  display: block;
  font-size: 20px;
  font-weight: 300;
}

.form-step.active {
  display: block;
}

input, select {
  padding: 14px;
  margin: 10px 0;
  border: 1px solid #2A295E;
  font-size: 16px;
  width: 100%;
}

button {
  background-color: #2A295E;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  margin-top: 10px;
}

button:hover {
  background-color: #1f1e4d;
}

button:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}

.button-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.checkbox {
  display: flex;
  align-items: center;
}

.checkbox label {
  font-size: 14px;
}

.checkbox label a {
color: #F5802E;
}

.checkbox input[type="checkbox"] {
  display: inline-block;
    width: 20px;
}

.modal {
  display: none;
  justify-content: center;
  align-items: center;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
  background-color: #fff;
  margin: 4% auto;
  padding: 4%;
  border-radius: 10px;
  width: 100%;
  max-width: 1200px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.modal .close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.modal .close:hover,
.modal .close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}


.form-step h2 {
  font-size: 32px;
    font-weight: 300;
    text-align: center;
    margin: 4% 8%;
    color: #2a295e;
}

textarea:focus, input:focus{
  outline: none;
}

.grid * {
  box-sizing: border-box;
  width: 100%;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.problem-options.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.problem-options label {
  margin: 10px auto;
  text-align: center;
  padding: 4%;
  height: 180px;
  display: flex
;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
}
.problem-options label img {
  max-width: 80px;
  height: auto;
  margin: 0 auto 25px;
  display: block;
}

.problem-options input[type="radio"] {
  display: none;
}
.problem-options label:hover {
  border: 1px solid #2A295E;
}

.problem-options label:has(input[type="radio"]:checked) {
  border: 1px solid #2A295E;
} 

.radio-options .grid {
  display: grid
  ;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
      max-width: 50%;
      margin: 4% auto;
}

.radio-options label {
  height: 160px;
  width: 160px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  box-shadow: none;
  border: 1px solid rgba(42, 41, 94, 0.2);
  cursor: pointer;
}

.radio-options input[type="radio"] {
  display: none;
}
.radio-options label:hover {
  border: 1px solid #2A295E;
}
.radio-options label:has(input[type="radio"]:checked) {
  border: 1px solid #2A295E;
  
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.hero.thankyou {
  background-image: url(../img/hp_bg-scaled.jpg);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  min-height: 40vh;
  margin: 70px auto 0;
  justify-content: center;
}

.hero.thankyou .column {
  width: 100%;
}

.hero.thankyou .column * {
  text-align: center;
}

.products {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4% 4% 10%;
  background-color: #fff;
}

.products .container {
  display: flex;
  max-width: 900px;
  gap: 4%;
}

.products .container a {
  text-decoration: none;
}

.products .column {
  max-width: 360px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  background-color: #F3F3F3;
}

.products .column img {
  max-width: 100%;
  height: 300px;
  object-fit: cover;
  margin: 0 auto;
}
.products .column .content {
  padding: 4% 4% 8% 4%;
  background-color: #fff;

}
.products .column h2 {
  font-size: 1.5rem;
  font-weight: 300;
  color: #2A295E;
}

.products .column p {
  font-size: 1rem;
  font-weight: 300;
  color: #0A0A0A;
}

.products .column:hover {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.products .column * {
  text-align: center;
}

.footer {
  background-color: #fff;
  text-align: center;
  position: fixed;
  bottom: 0;
  width: 100%;
  padding: 20px 0;
  box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.1);
  font-size: 14px;
  color: #2A295E;
  font-family: "Helvetica Neue", Sans-serif;
  font-weight: 300;
  line-height: 1.5;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}

.footer .container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.footer .column {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: flex;
}

.footer ul li {
  margin: 0 10px;
}
.footer ul li a {
  text-decoration: none;
  color: #2A295E;
}

@media (max-width: 767px) {
  .hero {
    flex-direction: column;
    padding: 20px;
    min-height: 90vh;
  }
  .hero-title {
    font-size: 2.8rem;
}
  .hero-left, .hero-right {
    width: 100%;
    text-align: center;
  }
  .column {
    width: 100%;
  }

  .grid {
    gap: 10px;
  }
  .products .container {
    flex-direction: column;
    align-items: center;
  }
  .products .column {
    max-width: 100%;
    margin-bottom: 20px;
  }
  .form-step h2 {
    font-size: 24px;
}
.radio-options .grid {
      gap: 10px;
      max-width: 100%;
}

.problem-options.grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.problem-options label {
  height: 120px;
}

.problem-options label img {
  max-width: 60px;
  margin: 0 auto 10px;
}

.form-step label {
  font-size: 16px;
}

.form-step.radio-options label {
  font-size: 18px;
}

.container {
  display: flex;
  flex-direction: column;
}

.modal-content {
  margin: 10px;
}

.footer ul {
  flex-direction: column;
}
  
}