:root {
    --bg: #f5fbfa;
    --card: #ffffff;
    --text: #18312f;
    --muted: #5f7471;
    --accent: #188a7a;
    --accent-dark: #0f665a;
    --soft: #e6f4f1;
    --border: #d8ebe7;
    --warning: #8a5a18;
}

* { box-sizing: border-box; }

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: linear-gradient(180deg, var(--bg), #ffffff);
    color: var(--text);
    line-height: 1.55;
    max-width: 100%;
    overflow-x: hidden;
}

.ad-disclosure {
    font-size: 13px;
    line-height: 1.5;
    text-align: center;
}

.page {
    width: min(960px, 92%);
    margin: 0 auto;
    padding: 10px 0 10px;
}

.affiliate-disclosure {
    max-width: 760px;
    margin: 0 auto 18px;
    padding: 12px 14px;
    background: #fff8df;
    border: 1px solid #f1dda2;
    border-radius: 12px;
    color: #5f4700;
    font-size: 13px;
    line-height: 1.5;
    text-align: center;
}

.logo {
    display: block;
    width: 250px;
    max-width: 100%;
    height: auto;
    margin: 0 auto 20px;
}

.hero {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 28px;
    align-items: center;
    margin-bottom: 28px;
}

.hero-card, .quiz-card, .footer-card {
    background: var(--card);
    border: 2px solid var(--border);
    border-radius: 24px;
    box-shadow: 0 18px 45px rgba(24, 49, 47, 0.08);
}

.hero-card { padding: 34px;}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: var(--accent-dark);
    background: var(--soft);
    border-radius: 999px;
    padding: 8px 12px;
    margin-bottom: 16px;
}

h1 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(34px, 5vw, 56px);
    line-height: 1.02;
    margin: 0 0 16px;
    letter-spacing: -1.4px;
}

.subhead {
    font-size: 18px;
    color: var(--muted);
    margin: 0 0 22px;
}

.bullets {
    display: grid;
    gap: 10px;
    margin: 10px 0;
    padding: 0;
    list-style: none;
}

.bullets li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: #284845;
}

.check {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--soft);
    color: var(--accent-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    font-weight: 700;
    margin-top: 1px;
}

.visual-box {
    border-radius: 22px;
    background: #fff;
    min-height: 310px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.hero-image {
    width: 100%;
    max-width: 420px;
    height: auto;
    display: block;
    margin: 0 auto;
	border: 2px solid #188a7a;
    border-radius: 18px;
}

.quiz-card {
    padding: 28px;
    margin-bottom: 24px;
    text-align: center;
}

.quiz-card.quiz-started { text-align: left;}

.progress-wrap {
    display: none;
    width: 100%;
    height: 10px;
    background: #edf7f5;
    border-radius: 999px;
    overflow: hidden;
    margin-bottom: 22px;
}

.progress-wrap.active { display: block;}

.progress-bar {
    width: 0%;
    height: 100%;
    background: var(--accent);
    transition: width 0.25s ease;
}
.start-quiz-btn, .ctaBtn {
    display: inline-block;
    text-decoration: none;
    background: var(--accent);
    color: #fff;
    padding: 16px 22px;
    font-size: 17px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 12px 24px rgba(24, 138, 122, 0.24);
    transition: background 0.2s ease, transform 0.2s ease;
	min-height: 48px;
}

.start-quiz-btn:hover, .ctaBtn:hover, .start-quiz-btn:focus, .ctaBtn:focus {
    background: var(--accent-dark);
    transform: translateY(-1px);
    outline: none;
}

.cta-note {
    font-size: 13px;
    color: var(--muted);
    margin: 12px auto 0;
    line-height: 1.5;
	text-align: center;
}

.hidden { display: none;}

.quiz-note {
    font-size: 16px;
    color: var(--muted);
    margin: 18px 0 12px;
    text-align: center;
}

#quizArea { display: none;}

.step-label {
    color: var(--accent-dark);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
}

.question {
    font-size: clamp(24px, 4vw, 34px);
    line-height: 1.15;
    margin: 0 0 18px;
    letter-spacing: -0.7px;
}

.answers {
    display: grid;
    gap: 12px;
}

.answer-btn { 
    background: var(--card);
    color: var(--text);
    border: 1px solid var(--border);
    padding: 16px 18px;
    text-align: left;
    font-size: 16px;
    border-radius: 15px;
    cursor: pointer;
    font-weight: bold;
    transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.answer-btn:hover, .answer-btn:focus {
    background: var(--soft);
    outline: none;
    transform: translateY(-1px);
}

.nav-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-top: 18px;
}

.loading-area {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

.loader {
    width: 54px;
    height: 54px;
    border: 2px solid #e7f5f2;
    border-top: 2px solid #188a7a;
    border-radius: 50%;
    margin: 0 auto 20px;
    animation: spin 0.9s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg);}
}

.result { display: none;}

.result .ctaBtn {
    width: 100%;
    max-width: 360px;
    text-align: center;
}

.result.active { display: block;}

.result-box {
    background: var(--soft);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 22px;
    margin: 18px 0;
}

.result-box h3 {
    margin: 0 0 8px;
    font-family: Georgia, 'Times New Roman', serif;
    line-height: 1.1;
    letter-spacing: -0.5px;
    font-size: 22px;
}

.footer-card {
    padding: 20px;
    font-size: 13px;
    color: var(--muted);
    text-align: center;
}

.footer-card a { 
    color: var(--accent-dark);
}

.sources {
  margin: 32px 0;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
  font-size: 14px;
}

.sources h3 {
  font-size: 18px;
}

.sources li {
  text-align: left;
  font-size: 14px;
}

.sources a {
  color: var(--accent-dark);
}

#advertisementtext {
    text-transform: uppercase;
}

@media (max-width: 820px) {
    .hero { grid-template-columns: 1fr; }
    .hero-card, .quiz-card { padding: 24px; }
    .visual-box { min-height: 220px; }
}

@media (max-width: 600px) {
  body {
    font-size: 16px;
    line-height: 1.6;
  }

  h1 {
    font-size: clamp(32px, 10vw, 42px);
    line-height: 1.08;
  }

  h2 {
    font-size: 26px;
    line-height: 1.15;
  }

  p,
  li {
    font-size: 16px;
  }
  
  .ctaBtn, .start-quiz-btn {
    width: 100%;
    text-align: center;
  }

  .answer-btn {
    width: 100%;
    font-size: 16px;
    padding: 16px;
  }
}