/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #1a2b4a;
  --navy-dark: #0f1a2e;
  --accent: #e85d3a;
  --accent-hover: #d14a28;
  --teal: #2a7a8c;
  --text: #333333;
  --text-light: #666666;
  --bg: #f5f5f5;
  --white: #ffffff;
  --border: #e0e0e0;
  --advertorial-bg: #c0392b;
  --radius: 6px;
  --radius-btn: 30px;
  --shadow: 0 2px 12px rgba(0,0,0,0.08);
  --font-body: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  --font-head: Georgia, 'Times New Roman', serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--teal);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover { color: var(--accent); }

/* Advertorial Banner */
.advertorial-banner {
  background: var(--advertorial-bg);
  color: var(--white);
  text-align: center;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Header */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
}

.btn-home {
  background: var(--navy);
  color: var(--white);
  padding: 10px 28px;
  border-radius: var(--radius-btn);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
  border: none;
  cursor: pointer;
}

.btn-home:hover {
  background: var(--navy-dark);
  color: var(--white);
}

/* Main Layout */
.main-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 32px 20px 48px;
}

/* Hero */
.hero-image {
  width: 100%;
  border-radius: var(--radius);
  margin-bottom: 28px;
  box-shadow: var(--shadow);
}

.article-meta {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 16px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.article-meta span::before {
  content: '•';
  margin-right: 6px;
  color: var(--accent);
}

.article-meta span:first-child::before { content: ''; margin: 0; }

h1 {
  font-family: var(--font-head);
  font-size: 2.1rem;
  line-height: 1.25;
  color: var(--navy);
  margin-bottom: 20px;
}

.lead {
  font-size: 1.15rem;
  color: var(--text);
  margin-bottom: 28px;
  border-left: 4px solid var(--accent);
  padding-left: 18px;
  line-height: 1.65;
}

/* Content Blocks */
.content-block {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 24px;
  box-shadow: var(--shadow);
}

.content-block h2 {
  font-family: var(--font-head);
  font-size: 1.55rem;
  color: var(--navy);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent);
}

.block-image {
  width: 100%;
  border-radius: var(--radius);
  margin-bottom: 18px;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.content-block p {
  margin-bottom: 14px;
  color: var(--text);
}

.content-block p:last-child { margin-bottom: 0; }

.citation {
  display: block;
  font-size: 12px;
  color: var(--text-light);
  margin-top: 10px;
  padding: 10px 14px;
  background: #f0f4f8;
  border-radius: 4px;
  border-left: 3px solid var(--teal);
  line-height: 1.5;
}

.citation a { font-size: 12px; }

/* Connector */
.connector {
  background: linear-gradient(135deg, var(--navy) 0%, #2a4a6b 100%);
  color: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  margin-bottom: 24px;
  text-align: center;
}

.connector p {
  font-size: 1.1rem;
  line-height: 1.65;
  margin: 0;
}

/* CTA Section */
.cta-section {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  margin-bottom: 24px;
  box-shadow: var(--shadow);
  text-align: center;
  border: 2px solid var(--accent);
}

.cta-section h2 {
  font-family: var(--font-head);
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 14px;
}

.cta-section p {
  color: var(--text-light);
  margin-bottom: 24px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.btn-cta {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  padding: 16px 48px;
  border-radius: var(--radius-btn);
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  border: none;
  cursor: pointer;
  letter-spacing: 0.3px;
}

.btn-cta:hover {
  background: var(--accent-hover);
  color: var(--white);
  transform: translateY(-1px);
}

/* Form */
.lead-form {
  max-width: 480px;
  margin: 0 auto;
  text-align: left;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 15px;
  font-family: var(--font-body);
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal);
}

.form-group textarea { resize: vertical; min-height: 80px; }

.form-note {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 12px;
  line-height: 1.5;
}

.form-success {
  background: #d4edda;
  color: #155724;
  padding: 16px;
  border-radius: var(--radius);
  text-align: center;
  font-weight: 600;
}

/* Disclaimer Box */
.disclaimer-box {
  background: #fff8e6;
  border: 1px solid #f0d78c;
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 24px;
  font-size: 14px;
  line-height: 1.6;
  color: #5a4a2a;
}

.disclaimer-box strong { color: #3d3018; }

/* Footer */
.site-footer {
  background: var(--navy-dark);
  color: #b0bec5;
  padding: 40px 24px 24px;
  font-size: 14px;
  line-height: 1.7;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.footer-links a {
  color: #cfd8dc;
  font-size: 14px;
  text-decoration: none;
}

.footer-links a:hover { color: var(--white); }

.footer-legal h4 {
  color: var(--white);
  font-size: 15px;
  margin-bottom: 12px;
}

.footer-legal p { margin-bottom: 8px; }

.footer-disclosures {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 12px;
  line-height: 1.65;
}

.footer-disclosures p { margin-bottom: 14px; }

.footer-copy {
  text-align: center;
  margin-top: 24px;
  font-size: 12px;
  color: #78909c;
}

/* Legal Pages */
.legal-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 32px 20px 48px;
}

.legal-page h1 {
  font-family: var(--font-head);
  font-size: 1.8rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.legal-page .updated {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 28px;
}

.legal-page h2 {
  font-size: 1.2rem;
  color: var(--navy);
  margin: 28px 0 12px;
}

.legal-page p,
.legal-page li {
  margin-bottom: 12px;
  color: var(--text);
}

.legal-page ul {
  padding-left: 24px;
  margin-bottom: 16px;
}

/* Responsive */
@media (max-width: 600px) {
  h1 { font-size: 1.65rem; }
  .content-block { padding: 20px; }
  .connector { padding: 24px 20px; }
  .cta-section { padding: 28px 20px; }
  .btn-cta { padding: 14px 32px; font-size: 15px; }
  .site-header { padding: 12px 16px; }
}
