:root {
    --bg: #f5fbfa;
    --card: #ffffff;
    --text: #173330;
    --muted: #647774;
    --accent: #188878;
    --accent-dark: #0f6558;
    --soft: #e7f5f2;
    --border: #d8ebe7;
}

* { box-sizing: border-box;}

body {
    margin: 0;
    min-height: 100vh;
    background: linear-gradient(180deg, #f5fbfa, #ffffff);
    color: var(--text);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.7;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ad-disclosure {
    font-size: 13px;
    line-height: 1.5;
    text-align: center;
    padding-bottom: 24px;
}

.page { width: min(760px, 100%);}

.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;
}

.card {
    width: 100%;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 28px;
    box-shadow: 0 22px 55px rgba(23, 51, 48, 0.08);
    overflow: hidden;
}

.top-strip {
    background: var(--soft);
    color: var(--accent-dark);
    text-align: center;
    padding: 12px 16px;
    font-size: 13px;
    font-weight: 700;
    border-bottom: 1px solid var(--border);
	border-radius: 15px;
}

.logo { 
    width: 250px;
	margin: auto;
}

.content {
    padding: 44px 44px 24px;
    text-align: center;
}

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;
}

.image-wrap {
    width: 100%;
    max-width: 360px;
    margin: 0 auto 26px;
    border-radius: 24px;
    overflow: hidden;
    background: #ffffff;
    border: 5px solid var(--border);
    box-shadow: 0 18px 36px rgba(23, 51, 48, 0.10);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.bridge-image {
    width: 100%;
    height: auto;
    display: block;
}

.subhead {
    font-size: 19px;
    color: var(--muted);
    line-height: 1.6;
    margin: 0 auto 28px;
    max-width: 620px;
}

.transition-copy {
    font-size: 16px;
    color: var(--muted);
    max-width: 580px;
    margin: 0 auto 22px;
    line-height: 1.6;
}

.bullet-wrap {
    display: grid;
    gap: 12px;
    margin: 0 auto 32px;
    max-width: 520px;
    text-align: left;
}

.bullet {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 14px 16px;
}

.check {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--soft);
    color: var(--accent-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex: 0 0 auto;
    margin-top: 1px;
}

.cta-text {
  font-size: 16px;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 18px;
  line-height: 1.6;
}

.ctaBtn {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    text-decoration: none;
    padding: 18px 28px;
    border-radius: 18px;
    font-size: 18px;
    font-weight: 700;
    box-shadow: 0 16px 32px rgba(24, 136, 120, 0.26);
    transition: 0.2s ease;
	min-height: 48px;
}

.ctaBtn:hover {
    background: var(--accent-dark);
    transform: translateY(-1px);
}

.cta-note {
  font-size: 13px;
  color: var(--muted);
  margin: 12px auto 0;
  max-width: 420px;
  text-align: center;
  line-height: 1.5;
}

.footer {
    margin-top: 22px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    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: 820px) {
  .hero,
  .hero-grid,
  .layout {
    grid-template-columns: 1fr;
  }

  .hero-card,
  .quiz-card,
  .content,
  .sidebar,
  .card,
  .footer-card {
    padding: 22px;
  }
}

@media (max-width: 720px) {
    .content { padding: 34px 24px 24px;}
	
    h1 {font-size: 42px;}
	
    .footer { margin: 24px 24px;}
}

@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 {
    width: 100%;
    text-align: center;
    display: block;
  }
}