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

:root {
  --primary: #2E4057;
  --accent-peach: #F7CAC9;
  --accent-sky: #87CEEB;
  --accent-khaki: #F0E68C;
  --neutral-light: #F8F8F8;
  --neutral-light2: #EEEEEE;
  --neutral-dark: #333333;
  --white: #FFFFFF;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lora', serif;
  color: var(--primary);
  background-color: var(--white);
  line-height: 1.6;
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', 'Montserrat', sans-serif;
  font-weight: 600;
  line-height: 1.3;
  color: var(--primary);
  margin-bottom: 24px;
}

h1 {
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 32px;
  letter-spacing: -0.5px;
}

h2 {
  font-size: 36px;
  margin-bottom: 24px;
}

h3 {
  font-size: 28px;
  margin-bottom: 20px;
}

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

ul, ol {
  margin-left: 24px;
  margin-bottom: 20px;
}

li {
  margin-bottom: 12px;
  line-height: 1.8;
  color: var(--primary);
}

a {
  color: var(--primary);
  text-decoration: none;
  border-bottom: 2px solid var(--accent-peach);
  transition: all 0.3s ease;
}

a:hover {
  color: var(--accent-peach);
  border-bottom-color: var(--primary);
}

button, .btn {
  font-family: 'Inter', sans-serif;
  padding: 14px 32px;
  border: none;
  background-color: var(--primary);
  color: var(--white);
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 16px;
  border-radius: 4px;
}

button:hover, .btn:hover {
  background-color: var(--accent-peach);
  color: var(--primary);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--white);
  border-bottom: 1px solid var(--neutral-light2);
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

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

.logo {
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  cursor: pointer;
  transition: color 0.3s ease;
}

.logo:hover {
  color: var(--accent-peach);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 32px;
  margin: 0;
}

nav a {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--primary);
  border: none;
  padding-bottom: 4px;
  border-bottom: 3px solid transparent;
  transition: border-bottom-color 0.3s ease;
}

nav a:hover, nav a.active {
  border-bottom-color: var(--accent-peach);
}

main {
  margin-top: 80px;
}

section {
  padding: 100px 0;
  border-bottom: 1px solid var(--neutral-light2);
}

section.hero {
  padding: 0;
  border-bottom: none;
  margin-top: 80px;
}

.hero-image {
  width: 100%;
  height: 600px;
  object-fit: cover;
  display: block;
}

.hero-overlay {
  position: relative;
  height: 600px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
}

.hero-content {
  background-color: rgba(46, 64, 87, 0.7);
  padding: 60px 40px;
  max-width: 800px;
}

.hero-content h1 {
  color: var(--white);
  margin-bottom: 20px;
}

.hero-content p {
  color: var(--white);
  font-size: 18px;
}

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

.two-column-image {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.card {
  background-color: var(--neutral-light);
  padding: 40px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.card:hover {
  box-shadow: 0 12px 24px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}

.card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  margin-bottom: 24px;
  border-radius: 4px;
  display: block;
}

.card h3 {
  margin-top: 0;
}

.full-width-section {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding: 100px 20px;
}

.full-width-bg {
  background-color: var(--neutral-light);
}

.myth-fact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
  padding: 24px;
  border-radius: 4px;
  background-color: var(--neutral-light);
}

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

.myth-box {
  background-color: #FFE5E5;
  border-left: 4px solid var(--accent-peach);
}

.fact-box {
  background-color: #E5F3FF;
  border-left: 4px solid var(--accent-sky);
}

.myth-box h4, .fact-box h4 {
  margin-top: 0;
  font-size: 16px;
}

.glossary-rail {
  background-color: var(--neutral-light);
  padding: 30px;
  border-radius: 4px;
  margin-top: 40px;
}

.glossary-rail h3 {
  font-size: 20px;
  margin-bottom: 20px;
}

.glossary-item {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--neutral-light2);
}

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

.glossary-item strong {
  color: var(--primary);
}

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

.timeline-item {
  display: flex;
  margin-bottom: 40px;
  gap: 40px;
}

.timeline-marker {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background-color: var(--accent-peach);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
}

.timeline-content h4 {
  margin-top: 0;
  margin-bottom: 12px;
  color: var(--primary);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 40px 0;
  background-color: var(--white);
}

.comparison-table th {
  background-color: var(--primary);
  color: var(--white);
  padding: 16px;
  text-align: left;
  font-family: 'Inter', sans-serif;
}

.comparison-table td {
  padding: 16px;
  border-bottom: 1px solid var(--neutral-light2);
}

.comparison-table tr:nth-child(even) {
  background-color: var(--neutral-light);
}

.disclaimer {
  background-color: #FFF8E5;
  border-left: 4px solid var(--accent-khaki);
  padding: 24px;
  border-radius: 4px;
  margin: 40px 0;
  font-size: 14px;
  line-height: 1.8;
  color: var(--primary);
}

.disclaimer strong {
  color: var(--primary);
}

.info-block {
  background-color: var(--accent-sky);
  color: var(--white);
  padding: 32px;
  border-radius: 4px;
  margin: 40px 0;
}

.info-block h3 {
  color: var(--white);
}

.info-block p {
  color: var(--white);
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin: 40px 0;
}

.stat-item {
  text-align: center;
  padding: 20px;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--accent-peach);
  margin-bottom: 10px;
}

.stat-label {
  font-size: 18px;
  color: var(--primary);
  font-family: 'Inter', sans-serif;
}

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

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  margin-bottom: 60px;
}

.footer-section h3 {
  color: var(--white);
  font-size: 18px;
  margin-bottom: 20px;
}

.footer-section p {
  color: var(--white);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 12px;
}

.footer-section a {
  color: var(--white);
  border-bottom: 2px solid var(--accent-peach);
}

.footer-section a:hover {
  color: var(--accent-peach);
}

.footer-divider {
  width: 100%;
  height: 1px;
  background-color: rgba(255,255,255,0.2);
  margin: 40px 0;
}

.footer-bottom {
  text-align: center;
  padding: 20px;
  border-top: 1px solid rgba(255,255,255,0.2);
  font-size: 14px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--primary);
  color: var(--white);
  padding: 20px;
  z-index: 999;
  display: none;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.1);
}

.cookie-banner.show {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.cookie-text {
  flex: 1;
  font-size: 14px;
  line-height: 1.6;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
}

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

.cookie-accept {
  background-color: var(--accent-peach);
  color: var(--primary);
}

.cookie-accept:hover {
  opacity: 0.9;
}

.cookie-decline {
  background-color: transparent;
  color: var(--white);
  border: 1px solid var(--white);
}

.cookie-decline:hover {
  background-color: var(--white);
  color: var(--primary);
}

.cookie-learn {
  background-color: transparent;
  color: var(--white);
  border: 1px solid var(--white);
  text-decoration: none;
  padding: 10px 24px;
}

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

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 22px;
  }

  p {
    font-size: 16px;
  }

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

  .grid-3 {
    grid-template-columns: 1fr;
  }

  nav ul {
    gap: 16px;
  }

  nav a {
    font-size: 14px;
  }

  .hero-image {
    height: 400px;
  }

  .hero-overlay {
    height: 400px;
  }

  .hero-content {
    padding: 40px 30px;
  }

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

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

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

  .cookie-banner.show {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-buttons {
    width: 100%;
    flex-wrap: wrap;
  }

  section {
    padding: 60px 0;
  }

  .full-width-section {
    padding: 60px 20px;
  }
}

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

  h2 {
    font-size: 22px;
  }

  h3 {
    font-size: 18px;
  }

  p {
    font-size: 15px;
  }

  nav ul {
    gap: 12px;
  }

  nav a {
    font-size: 12px;
  }

  .header-content {
    padding: 16px;
  }

  section {
    padding: 40px 0;
  }

  .container, .container-wide {
    padding: 0 16px;
  }
}
