.ghg-wrapper {
  display: flex;
  flex-direction: column;
}

/* Üst banner */
.top-banner {
  position: relative;
  padding: 30px 40px;
  background-color: #f8f9fa;
}

.main-title {
  font-size: 25px;
  font-weight: 700;
  max-width: 500px;
  z-index: 1;
  position: relative;
  font-style: bold;
  line-height: 120%;
  letter-spacing: 0%;
}

.main-status-ok {
  font-size: 60px;
  font-weight: 700;
  max-width: 500px;
  z-index: 1;
  position: relative;
  font-style: bold;
  line-height: 120%;
  letter-spacing: 0%;
  color: #0047FF;
}

.main-status-warning {
  font-size: 60px;
  font-weight: 700;
  max-width: 500px;
  z-index: 1;
  position: relative;
  font-style: bold;
  line-height: 120%;
  letter-spacing: 0%;
  color: #EF2E24;
}

.top-graphic {
  position: absolute;
  top: 20px;
  right: 10px;
  height: 65px;
  width: 105px;
}

/* Alt kısım */
.bottom-section {
  display: flex;
  flex-direction: row;
  min-height: 500px;
}

.left-content {
  flex: 1;
  padding: 60px 40px;
  background-color: #fff;
}

.question-box {
  max-width: 520px;
}

.progress-wrapper {
  margin-bottom: 30px;
}

.progress-bar-bg {
  height: 6px;
  width: 100%;
  background-color: #ddd;
  border-radius: 3px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  background-color: #0047FF;
  width: 0;
  transition: width 0.3s ease;
}

/* ✅ Her step için manuel class */
.progress-bar-fill.step-1 { width: 11%; }
.progress-bar-fill.step-2 { width: 22%; }
.progress-bar-fill.step-3 { width: 33%; }
.progress-bar-fill.step-4 { width: 44%; }
.progress-bar-fill.step-5 { width: 55%; }
.progress-bar-fill.step-6 { width: 67%; }
.progress-bar-fill.step-7 { width: 78%; }
.progress-bar-fill.step-8 { width: 89%; }
.progress-bar-fill.step-9 { width: 100%; }

.step-label {
  font-size: 14px;
  color: #555;
  margin-top: 8px;
}


.question {
  color: #0047FF;
  font-size: 20px;
  margin-bottom: 16px;
}

.desc {
  font-size: 15px;
  color: #333;
  margin-bottom: 30px;
}

.choices {
  display: flex;
  gap: 10px;
  margin-bottom: 40px;
}

.choices button {
  padding: 10px 18px;
  border: 1px solid #ccc;
  background-color: #f9f9f9;
  border-radius: 4px;
  cursor: pointer;
}

.choices button.selected {
  background-color: #0047FF;
  color: #fff;
  border-color: #0047FF;
}



.nav-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 40px;
}

.btn {
  padding: 10px 0;
  font-weight: 500;
  border-radius: 4px;
  cursor: pointer;
  border: 1px solid transparent;
  font-size: 14px;
}

/* Back button: daha geniş, outline görünüm */
.btn.back {
  background-color: #fff;
  border: 1px solid #0a2540;
  color: #0a2540;
  width: 100px;
}

/* Next button: daha koyu, kontrast */
.btn.next {
  background-color: #0a2540;
  color: #fff;
  border: 1px solid #0a2540;
  width: 100px;
}


/*Newsletter start*/
.newsletter {
  background-color: #00268a;
  padding: 40px 20px;
  color: #ffffff;
}

.newsletter-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-start;
}

.newsletter-text {
  flex: 1;
  min-width: 250px;
  font-size: 16px;
  line-height: 1.6;
}

.newsletter-form {
  flex: 1;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ✅ INPUT + BUTTON aynı satırda */
.input-row {
  display: flex;
  gap: 8px;
}

.input-row input {
  flex: 1;
  padding: 12px 16px;
  font-size: 14px;
  border: 1px solid #ffffff;
  background-color: transparent;
  color: #ffffff;
  border-radius: 2px;
}

.input-row input::placeholder {
  color: #cbd5e1;
}

.input-row button {
  padding: 12px 20px;
  background-color: #ffffff;
  color: #00268a;
  border: none;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  border-radius: 2px;
  white-space: nowrap;
}

.privacy-text {
  font-size: 12px;
  color: #e2e8f0;
}

.privacy-text a {
  color: #ffffff;
  text-decoration: underline;
}
/*Newsletter end*/

.right-image {
  flex: 1;
  overflow: hidden;
  height: 580px;
}

.right-image img {
  width: 100%;
  height: 580px;
  object-fit: cover;
}

/*Summary page controls*/
.simple-form {
        display: flex;
        flex-direction: column;
        gap: 10px;
      }

      label {
        font-size: 14px;
        color: #111;
      }

  form.simple-form input[type="text"], 
  form.simple-form input[type="email"] {
    padding: 10px 26px;
    font-size: 14px;
    border: 1px solid #333;
    width: 100%;
    box-sizing: border-box;
  }

  .input-icon-wrapper input[type="email"] {
    background: url('/images/steps/letter.png') no-repeat left center;
    background-size: 24px 24px; /* Adjust size as needed */
    padding-left: 56px; /* Adjust to fit the icon */
  }
  /*summary page controls end*/

/* RESPONSIVE */
@media (max-width: 768px) {
  .top-graphic,
  .right-image {
    display: none;
  }

  .bottom-section {
    flex-direction: column;
  }

  .choices {
    flex-direction: column;
  }

  .choices button {
    width: 100%;
  }

  .nav-buttons {
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 320px;
  }

  .back,
  .next {
    width: 100%;
  }

  .newsletter-container {
    flex-direction: column;
    gap: 30px;
    align-items: center;
    text-align: center;
  }

  .newsletter-text {
    text-align: center;
  }

  .newsletter-form {
    align-items: center;
    width: 100%;
    max-width: 500px;
  }

  .input-row {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .input-row input,
  .input-row button {
    width: 100%;
  }

  .privacy-text {
    text-align: center;
  }
}
