* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  background: #041f08;
  color: #ffffff;
}

.top-bar {
  background: linear-gradient(180deg, #063b13, #021d07);
  padding: 12px 20px;
  text-align: center;
}

.logo {
  display: inline-block;
  width: 7.5rem;
  color: #d6b35a;
  font-weight: 800;
  font-size: 14px;
}

.logo-img {
  width: 100%;
  height: auto;
}

.hero {
  min-height: 390px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.55)), #151515;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
}

.hero-placeholder {
  width: 100%;
  max-width: 1050px;
  min-height: 300px;
  border: 1px dashed rgba(255, 215, 0, 0.35);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.45);
  font-size: 14px;
}

.hero-image {
  width: 100%;
  height: auto;
  border-radius: 16px;
}

.section {
  background: radial-gradient(circle at top, #0b3f16, #031a07 75%);
  padding: 70px 20px;
  text-align: center;
}

.container {
  max-width: 720px;
  margin: 0 auto;
}

h1 {
  font-size: 28px;
  margin-bottom: 14px;
  font-weight: 900;
}

.intro {
  color: #bfc9bd;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 45px;
}

.quiz-card {
  background: #021f0e;
  border: 1px solid rgba(0, 255, 170, 0.25);
  border-radius: 10px;
  padding: 22px;
  box-shadow: 0 0 28px rgba(0, 255, 130, 0.08);
}

.quiz-title {
  color: #006b2f;
  font-weight: 800;
  margin-bottom: 6px;
}

.quiz-subtitle {
  color: #a8b8ad;
  font-size: 13px;
  margin-bottom: 24px;
}

.question {
  background: #031707;
  border-radius: 8px;
  padding: 18px;
  margin-bottom: 14px;
  text-align: left;
}

.question-header {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 14px;
  font-size: 14px;
  line-height: 1.4;
}

.answers button.selected {
  background: #006b2f;
  color: #ffff;
  border-color: #006b2f;
}

.number {
  background: #006b2f;
  color: #00240f;
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}

.answers {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-left: 32px;
}

.answers button {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  padding: 9px 16px;
  font-size: 12px;
  cursor: pointer;
  transition: 0.2s;
}

.answers button:hover {
  border-color: #006b2f;
  color: #006b2f;
  box-shadow: 0 0 10px rgba(0, 216, 144, 0.25);
}

.cta {
  margin-top: 22px;
  width: 100%;
  background: #006b2f;
  color: #ffff;
  border: none;
  border-radius: 6px;
  padding: 13px;
  font-weight: 900;
  cursor: pointer;
}

.info-section {
  background: #006b2f;
  padding: 50px 20px;
}

.info-box {
  max-width: 720px;
  margin: 0 auto;
  background: rgba(0, 0, 0, 0.35);
  border-radius: 8px;
  padding: 22px;
  font-size: 13px;
  line-height: 1.6;
  color: #d8e4d8;
}

.result-message {
  color: #d8e4d8;
  font-size: 14px;
  line-height: 1.6;
  margin-top: 12px;
}

footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #006b2f;
  padding: 24px 20px;
  text-align: center;
  font-size: 12px;
  color: #d5d5d5;
}
.footer-logo {
  width: 8rem;
  height: auto;
  margin-bottom: 1.25rem;
}

footer span {
  color: #d6b35a;
  font-weight: 800;
}

@media (max-width: 600px) {
  h1 {
    font-size: 23px;
  }

  .answers {
    padding-left: 0;
  }

  .answers button {
    flex: 1 1 calc(50% - 10px);
  }
}
