body {
  background: #F3F7FA;
  font-family: 'Segoe UI', Tahoma, Arial, sans-serif;
  color: #212121;
  margin: 0;
  padding: 0;
}
.main-container {
  max-width: 540px;
  margin: 40px auto 24px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 0 24px #c1c1c1;
  padding: 30px 22px 22px;
}
h1, h2 {
  text-align: center;
  color: #0B6DC4;
}
.progress-bar {
  width: 100%;
  height: 14px;
  background: #e9eef2;
  border-radius: 8px;
  margin-bottom: 18px;
  overflow: hidden;
}
.progress-bar-inner {
  height: 100%;
  background: linear-gradient(90deg, #0B6DC4, #00939B 70%);
  width: 0%;
  transition: width 0.4s;
}
.question {
  margin: 18px 0 10px;
  font-size: 1.2em;
  min-height: 50px;
  text-align: left;
}
.note {
  background: #ffeeb2;
  color: #8a6d00;
  font-size: 1em;
  border-radius: 7px;
  padding: 7px 11px;
  margin-bottom: 16px;
  margin-top: 3px;
  display: inline-block;
}
.option {
  background: #F2F7FB;
  border: 1px solid #d7e7ef;
  border-radius: 12px;
  margin-bottom: 14px;
  padding: 15px 18px;
  font-size: 1.1em;
  cursor: pointer;
  transition: background .2s, border .2s;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.option.selected {
  background: #e1f3fb;
  border: 1.5px solid #0B6DC4;
}
.answers-bar {
  display: flex;
  gap: 10px;
  margin: 18px 0 0;
}
.answers-bar button {
  flex: 1;
  padding: 10px;
  font-size: 1em;
  border-radius: 8px;
  border: none;
  background: #e9eef2;
  color: #222;
  cursor: pointer;
  transition: background 0.2s;
}
.answers-bar button.selected,
.answers-bar button:active {
  background: #0B6DC4;
  color: #fff;
  font-weight: bold;
}
.btn-main {
  background: linear-gradient(90deg, #0B6DC4 70%, #00939B);
  color: #fff;
  border: none;
  padding: 13px 28px;
  font-size: 1.05em;
  border-radius: 8px;
  margin: 20px 0 10px;
  cursor: pointer;
  display: block;
  width: 100%;
}
.btn-main:disabled {
  background: #a4c7dd;
  cursor: not-allowed;
}
.btn-secondary {
  background: #eee;
  color: #222;
  border: none;
  padding: 11px 20px;
  font-size: 1em;
  border-radius: 8px;
  margin-top: 6px;
  cursor: pointer;
}
.result-section {
  text-align: left;
  margin: 20px 0;
  background: #F2F7FB;
  border: 1.5px solid #e9eef2;
  border-radius: 16px;
  padding: 18px 22px;
  /* display:flex; */
  /* flex-direction: column; */
  /* width: 100%; */
}
@media (max-width: 700px) {
  .result-section {
    padding: 18px 0px;
  }
}
.result-section strong {
  color: #0B6DC4;
}
.share-btns {
  margin: 18px 0;
  text-align: center;
}
.share-btns button {
  margin: 0 8px;
  padding: 8px 16px;
  border-radius: 6px;
  border: none;
  background: #0B6DC4;
  color: #fff;
  cursor: pointer;
}
@media (max-width: 700px) {
  .main-container {
    margin: 12px 3px;
    padding: 13px 4px 14px;
  }
  .question {
    font-size: 1.05em;
  }
  .option {
    font-size: 1em;
  }
}
.main-question {
  font-size: 1.6em;
  color: #0B6DC4;
  font-weight: bold;
  margin-bottom: 10px;
  margin-top: 16px;
  text-align: left;
}

.stage-label {
  font-size: 1.05em;
  color: #7a8ba6;
  margin-bottom: 18px;
  margin-top: 0px;
  text-align: left;
}