* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #1E3A8A;
  --accent-orange: #D97706;
  --accent-green: #059669;
  --accent-brown: #B45309;
  --bg-light: #F8FAFC;
  --bg-card: #E2E8F0;
  --text-primary: #374151;
  --text-light: #6B7280;
  --border-color: #CBD5E1;
}

html, body {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--bg-light);
  color: var(--text-primary);
  line-height: 1.6;
  font-size: 18px;
}

h1 {
  font-family: 'Source Serif Pro', Georgia, serif;
  font-size: 64px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 30px;
  line-height: 1.2;
  letter-spacing: -1px;
}

h2 {
  font-family: 'Source Serif Pro', Georgia, serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 24px;
  line-height: 1.3;
}

h3 {
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
}

p {
  margin-bottom: 20px;
  line-height: 1.8;
  color: var(--text-primary);
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--accent-orange);
  text-decoration: underline;
}

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

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

header {
  position: sticky;
  top: 0;
  background-color: white;
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  max-width: 1280px;
  margin: 0 auto;
}

.logo {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
  font-family: 'Source Serif Pro', Georgia, serif;
}

.logo a {
  color: var(--primary);
  text-decoration: none;
}

.logo a:hover {
  color: var(--accent-orange);
  text-decoration: none;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
  flex-wrap: wrap;
}

nav a {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-primary);
  transition: all 0.3s ease;
  border-bottom: 2px solid transparent;
}

nav a:hover,
nav a.active {
  color: var(--primary);
  border-bottom: 2px solid var(--accent-orange);
  text-decoration: none;
}

.favicon-link {
  display: flex;
  align-items: center;
  gap: 8px;
}

.favicon-link img {
  width: 32px;
  height: 32px;
}

footer {
  background-color: var(--primary);
  color: white;
  padding: 60px 40px 40px;
  margin-top: 100px;
  border-top: 1px solid var(--border-color);
}

.footer-content {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3 {
  color: white;
  font-size: 18px;
  margin-bottom: 16px;
  font-family: 'Inter', sans-serif;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 12px;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s ease;
  display: block;
  margin-bottom: 8px;
}

.footer-section a:hover {
  color: var(--accent-orange);
  text-decoration: underline;
}

.footer-policies {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.footer-policies a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  margin-bottom: 0;
}

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

.disclaimer {
  background-color: var(--bg-card);
  padding: 20px;
  border-left: 4px solid var(--accent-orange);
  margin-bottom: 20px;
  border-radius: 4px;
}

.disclaimer p {
  margin-bottom: 0;
  font-size: 16px;
}

section {
  padding: 60px 40px;
  margin: 40px 0;
}

section.hero {
  background-color: var(--primary);
  color: white;
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
}

section.hero h1 {
  color: white;
  font-size: 72px;
  margin-bottom: 24px;
  line-height: 1.2;
}

section.hero p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 20px;
  margin-bottom: 16px;
  line-height: 1.6;
}

section.hero-alt {
  background-color: var(--bg-card);
  padding: 60px 40px;
}

section.hero-alt h1 {
  font-size: 56px;
}

.section-container {
  max-width: 1280px;
  margin: 0 auto;
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.two-column img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.content-block {
  line-height: 1.8;
}

.content-block h2 {
  margin-bottom: 24px;
}

.content-block p {
  margin-bottom: 18px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.card {
  background-color: white;
  padding: 40px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-color: var(--accent-orange);
}

.card h3 {
  margin-bottom: 16px;
}

.card p {
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.7;
}

.list-styled {
  list-style: none;
  margin-bottom: 24px;
}

.list-styled li {
  padding-left: 30px;
  margin-bottom: 12px;
  position: relative;
  color: var(--text-primary);
  line-height: 1.7;
}

.list-styled li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background-color: var(--accent-green);
  border-radius: 50%;
}

.cta-button {
  display: inline-block;
  background-color: var(--accent-orange);
  color: white;
  padding: 14px 32px;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 20px;
  font-family: 'Inter', sans-serif;
}

.cta-button:hover {
  background-color: #C76F05;
  box-shadow: 0 8px 20px rgba(217, 119, 6, 0.3);
  text-decoration: none;
  color: white;
}

.cta-button-secondary {
  background-color: var(--accent-green);
}

.cta-button-secondary:hover {
  background-color: #047857;
}

.glossary-section {
  background-color: var(--bg-card);
  padding: 40px;
  border-radius: 4px;
  margin-top: 40px;
}

.glossary-item {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--border-color);
}

.glossary-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.glossary-term {
  font-weight: 700;
  color: var(--primary);
  font-size: 18px;
  margin-bottom: 8px;
}

.glossary-definition {
  color: var(--text-primary);
  line-height: 1.7;
  font-size: 16px;
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  background-color: white;
  padding: 40px;
  border-radius: 4px;
  margin-top: 40px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--accent-orange);
  font-family: 'Source Serif Pro', Georgia, serif;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 16px;
  color: var(--text-primary);
  font-weight: 600;
}

.timeline {
  position: relative;
  padding: 40px 0;
}

.timeline-item {
  margin-bottom: 40px;
  padding-left: 60px;
  position: relative;
}

.timeline-item:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  background-color: var(--primary);
  border: 3px solid white;
  border-radius: 50%;
  box-shadow: 0 0 0 2px var(--border-color);
}

.timeline-item:after {
  content: '';
  position: absolute;
  left: 9px;
  top: 20px;
  width: 2px;
  height: 30px;
  background-color: var(--border-color);
}

.timeline-item:last-child:after {
  display: none;
}

.timeline-content h3 {
  margin-bottom: 8px;
}

.timeline-content p {
  color: var(--text-primary);
  font-size: 16px;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background-color: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-radius: 4px;
  overflow: hidden;
}

.comparison-table thead {
  background-color: var(--primary);
  color: white;
}

.comparison-table th {
  padding: 20px;
  text-align: left;
  font-weight: 600;
  font-size: 16px;
}

.comparison-table td {
  padding: 20px;
  border-bottom: 1px solid var(--border-color);
  font-size: 16px;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table tbody tr:hover {
  background-color: var(--bg-light);
}

.myth-fact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}

.myth-box,
.fact-box {
  padding: 30px;
  border-radius: 4px;
}

.myth-box {
  background-color: rgba(217, 119, 6, 0.1);
  border-left: 4px solid var(--accent-orange);
}

.fact-box {
  background-color: rgba(5, 150, 105, 0.1);
  border-left: 4px solid var(--accent-green);
}

.myth-box h4,
.fact-box h4 {
  font-weight: 700;
  margin-bottom: 12px;
  font-size: 18px;
}

.myth-box h4 {
  color: var(--accent-orange);
}

.fact-box h4 {
  color: var(--accent-green);
}

.form-container {
  background-color: var(--bg-card);
  padding: 40px;
  border-radius: 4px;
  max-width: 600px;
  margin: 40px 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--text-primary);
}

input[type="email"],
textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--text-primary);
  transition: all 0.3s ease;
}

input[type="email"]:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

textarea {
  resize: vertical;
  min-height: 150px;
}

.form-disclaimer {
  background-color: white;
  padding: 16px;
  border-left: 4px solid var(--accent-brown);
  margin-bottom: 24px;
  border-radius: 2px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-primary);
}

button[type="submit"] {
  background-color: var(--accent-orange);
  color: white;
  padding: 14px 32px;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
  width: 100%;
}

button[type="submit"]:hover {
  background-color: #C76F05;
  box-shadow: 0 8px 20px rgba(217, 119, 6, 0.3);
}

.full-width-image {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 4px;
  margin: 40px 0;
}

.medium-image {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  border-radius: 4px;
  margin: 20px 0;
}

.small-image {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  border-radius: 4px;
  margin: 16px 0;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--primary);
  color: white;
  padding: 20px 40px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-message {
  flex: 1;
  font-size: 15px;
  line-height: 1.6;
  min-width: 250px;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  min-width: 300px;
  justify-content: flex-end;
}

.cookie-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
}

.cookie-btn-accept {
  background-color: var(--accent-orange);
  color: white;
}

.cookie-btn-accept:hover {
  background-color: #C76F05;
}

.cookie-btn-decline {
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn-decline:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

.cookie-btn-learn {
  background-color: transparent;
  color: white;
  border: 1px solid white;
  text-decoration: none;
}

.cookie-btn-learn:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.separator {
  height: 1px;
  background-color: var(--border-color);
  margin: 40px 0;
}

.content-divider {
  background-color: var(--bg-card);
  padding: 40px;
  border-radius: 4px;
  margin: 40px 0;
}

.highlight {
  background-color: rgba(217, 119, 6, 0.1);
  padding: 2px 6px;
  border-radius: 2px;
  color: var(--accent-orange);
  font-weight: 600;
}

@media (max-width: 768px) {
  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 32px;
  }

  .header-content {
    flex-direction: column;
    gap: 16px;
  }

  nav ul {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }

  nav a {
    font-size: 14px;
    display: block;
    padding: 8px 0;
  }

  section {
    padding: 40px 20px;
  }

  .container {
    padding: 0 20px;
  }

  .two-column {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .myth-fact {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .cookie-banner {
    flex-direction: column;
    gap: 16px;
  }

  .cookie-buttons {
    justify-content: center;
    width: 100%;
    min-width: auto;
  }

  .stat-strip {
    grid-template-columns: 1fr;
  }

  .comparison-table {
    font-size: 14px;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 12px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 20px;
  }

  body {
    font-size: 16px;
  }

  section {
    padding: 30px 16px;
  }

  .container {
    padding: 0 16px;
  }

  .card {
    padding: 24px;
  }

  .form-container {
    padding: 24px;
  }

  nav ul {
    gap: 8px;
  }

  nav a {
    font-size: 13px;
  }
}
