:root {
    --bg: #f4f9f8;
    --card: #ffffff;
    --text: #183330;
    --muted: #647774;
    --accent: #188878;
    --accent-dark: #106457;
    --soft: #e8f5f2;
    --border: #d8ebe6;
    --table-head: #eef9f7;
}

* { box-sizing: border-box;}

body {
    margin: 0;
    background: linear-gradient(180deg, #f4f9f8, #ffffff);
    color: var(--text);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.7;
    max-width: 100%;
    overflow-x: hidden;
}

.layout, .content, .sidebar, .table-wrap {
    min-width: 0;
}

.ad-disclosure {
    font-size: 13px;
    line-height: 1.5;
    text-align: center;
}

.container {
    width: min(1120px, 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;
    margin: 0 auto;
}

.hero, .content, .sidebar, .footer, .table-wrap {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 24px;
    box-shadow: 0 18px 45px rgba(24, 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.5px;
    margin: 0 0 18px;
}

.subhead {
    font-size: 18px;
    color: var(--muted);
    margin-bottom: 22px;
}

.meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.meta-pill {
    border: 1px solid #000000;
    border-radius: 999px;
    padding: 10px 14px;
    font-size: 14px;
    color: var(--muted);
    background: #fff;
}

.hero-visual {
    background: #dcf3ee;
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 1px solid var(--border);
	border-top-left-radius: 15px;
	border-bottom-left-radius: 15px;
    padding: 24px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.hero-image {
    width: 100%;
    max-width: 420px;
    height: auto;
    display: block;
	border: 5px solid var(--border);
    border-radius: 22px;
    box-shadow: 0 18px 36px rgba(24, 51, 48, 0.12);
}

.layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 24px;
}

.content { padding: 38px;}

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;}

.notice-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: 34px 0 14px;
}

.table-wrap {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    padding: 18px;
    border-bottom: 1px solid var(--border);
    text-align: left;
    vertical-align: top;
}

th {
    background: var(--table-head);
    font-size: 15px;
}

.check {
    color: var(--accent-dark);
    font-weight: 700;
}

tr:last-child td { border-bottom: none;}

.cta-box {
    background: linear-gradient(180deg, #eefaf7, #ffffff);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 28px;
    margin-top: 34px;
}

.ctaBtn {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    text-decoration: none;
    padding: 16px 24px;
    border-radius: 16px;
    font-weight: 700;
    font-size: 17px;
    box-shadow: 0 14px 28px rgba(24, 136, 120, 0.25);
    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;
    line-height: 1.5;
}

.sidebar {
    padding: 24px;
    position: sticky;
    top: 20px;
    height: fit-content;
}

.sidebar-title {
    margin: 0 0 16px;
    font-size: 24px;
}

.sidebar-note {
    font-size: 13px;
    color: var(--muted);
    margin-top: 14px;
}

.footer {
    margin-top: 28px;
    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: 920px) {
	.hero-grid, .layout { grid-template-columns: 1fr;}

    .hero-content, .content { padding: 28px;}

    .hero-visual {
		border-left: none;
		border-top: 1px solid var(--border);
		min-height: 240px;
    }

    .sidebar { position: static;}
}

@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;
  }
  
  table {
    min-width: 640px;
  }
  
  .ctaBtn {
    width: 100%;
    text-align: center;
    display: block;
  }
}