:root {
    --bg: #f4f9f8;
    --card: #ffffff;
    --text: #173330;
    --muted: #627572;
    --accent: #168677;
    --accent-dark: #0f6458;
    --soft: #e6f5f1;
    --border: #d7ebe6;
}

* { box-sizing: border-box;}

body {
    margin: 0;
    background: linear-gradient(180deg, #f4f9f8, #ffffff);
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    line-height: 1.7;
    max-width: 100%;
    overflow-x: hidden;
}

.ad-disclosure {
    font-size: 13px;
    line-height: 1.5;
    text-align: center;
}

.container {
    width: min(980px, 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, .article, .quiz-card, .footer {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 24px;
    box-shadow: 0 18px 45px rgba(23, 51, 48, 0.07);
}

.hero {
    overflow: hidden;
    margin-bottom: 24px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
}

.hero-content { padding: 42px;}

.eyebrow {
    display: inline-block;
    background: var(--soft);
    color: var(--accent-dark);
    font-size: 13px;
    font-weight: 700;
    padding: 8px 12px;
    border-radius: 999px;
    margin-bottom: 18px;
}

h1 {
	font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(38px, 5vw, 62px);
    line-height: 1.02;
    letter-spacing: -1.6px;
    margin: 0 0 18px;
}

.subhead {
    font-size: 18px;
    color: var(--muted);
    margin-bottom: 22px;
}

.author-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    color: var(--muted);
    font-size: 14px;
}

.author-row div {
	background: #fff;
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 10px 14px;
    font-size: 14px;
    color: var(--muted);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.hero-visual {
    background: radial-gradient(circle at top left, #ffffff, #dcf3ee);
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 15px solid #dcf3ee;
	border-radius: 15px;
}

.article {
    padding: 38px;
    margin-bottom: 24px;
}

h2 {
	font-family: Georgia, 'Times New Roman', serif;
    font-size: 34px;
    line-height: 1.08;
    margin: 0 0 16px;
    letter-spacing: -0.8px;
}

p { margin: 0 0 18px;}

.highlight-box {
    background: var(--soft);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 22px;
    margin: 24px 0;
}

h3 {
	font-family: Georgia, 'Times New Roman', serif;
    line-height: 1.1;
    letter-spacing: -0.5px;
    font-size: 24px;
    margin: 36px 0 14px;
}

.quote-box {
    border-left: 4px solid var(--accent);
    padding: 10px 0 10px 18px;
    margin: 24px 0;
    color: #2a4744;
    font-style: italic;
}
.routine-check-cta {
    text-align: center;
    margin: 40px 0;
}

.hidden { display: none;}

.routine-check-btn {
    display: inline-block;
    border: none;
    background: #188878;
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    padding: 18px 32px;
    border-radius: 18px;
    cursor: pointer;
    box-shadow: 0 14px 28px rgba(24, 136, 120, 0.25);
    transition: 0.2s ease;
}

.routine-check-btn:hover {
    background: #0f6558;
    transform: translateY(-1px);
}

.routine-check-note {
    margin-top: 12px;
    font-size: 14px;
    color: #647774;
}

.quiz-card {
    padding: 34px;
    margin-bottom: 24px;
	display: none;
}

.progress-wrap {
    width: 100%;
    height: 10px;
    background: #edf7f5;
    border-radius: 999px;
    overflow: hidden;
    margin-bottom: 24px;
}

.progress-bar {
    width: 25%;
    height: 100%;
    background: var(--accent);
    transition: width 0.25s ease;
}

.step-label {
    color: var(--accent-dark);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
}

.question {
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.08;
    margin: 0 0 18px;
    letter-spacing: -0.8px;
}

.answers {
    display: grid;
    gap: 12px;
}

.answer-btn, .ctaBtn {
    border: none;
    border-radius: 16px;
    cursor: pointer;
    font-weight: 700;
    transition: 0.2s ease;
	min-height: 48px;
}

.routine-check-btn {
	min-height: 48px;
}

.answer-btn {
    background: #fff;
    border: 1px solid var(--border);
    color: var(--text);
    padding: 16px 18px;
    text-align: left;
    font-size: 16px;
}

.answer-btn:hover {
    background: var(--soft);
    transform: translateY(-1px);
}

.nav-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 18px;
}

.loading-area {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

.loader {
    width: 54px;
    height: 54px;
    border: 5px solid #e7f5f2;
    border-top: 5px solid #188878;
    border-radius: 50%;
    margin: 0 auto 20px;
    animation: spin 0.9s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg);}
}

.result { display: none;}

.result.active { display: block;}

.result-box {
    background: var(--soft);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 22px;
    margin: 10px;
}

.ctaBtn {
    display: block;
    width: fit-content;
    margin: 0 auto;
    background: var(--accent);
    color: #fff;
    text-decoration: none;
    padding: 16px 24px;
    font-size: 17px;
    box-shadow: 0 14px 28px rgba(22, 134, 119, 0.24);
}

.ctaBtn:hover {
    background: var(--accent-dark);
    transform: translateY(-1px);
}

.cta-note {
    font-size: 13px;
    color: var(--muted);
    margin: 12px auto 0;
    line-height: 1.5;
	text-align: center;
}

.footer {
    padding: 22px;
    font-size: 13px;
    color: var(--muted);
	text-align: center;
}

.sources {
  margin: 32px 0;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
  font-size: 14px;
}

.sources h3 {
  margin-top: 0;
  font-size: 18px;
}

.sources li {
  text-align: left;
  font-size: 14px;
}

.sources a {
  color: var(--accent-dark);
}

#advertisementtext {
    text-transform: uppercase;
}

@media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr;}

    .hero-content, .article, .quiz-card {padding: 28px;}

    .hero-visual {
        border-left: none;
        border-top: 1px solid var(--border);
        min-height: 240px;
    }
}

@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, .routine-check-btn {
    width: 100%;
    text-align: center;
    display: block;
  }

  .answer-btn {
    width: 100%;
    font-size: 16px;
    padding: 16px;
  } 
}