@import url('https://fonts.googleapis.com/css2?family=Lato:wght@900&family=Open+Sans:wght@400;600&display=swap');

:root {
  --primary-color: #87CEEB;
  --accent-green: #90EE90;
  --accent-gray: #A9A9A9;
  --accent-peach: #FFDAB9;
  --text-dark: #333333;
  --text-light: #666666;
  --bg-light: #f8f9fa;
  --border-light: #e0e0e0;
}

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

html, body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background-color: #ffffff;
}

h1, h2, h3 {
  font-family: 'Lato', sans-serif;
  font-weight: 900;
  margin: 0 0 1rem 0;
  line-height: 1.2;
}

h1 {
  font-size: 3rem;
  color: var(--primary-color);
}

h2 {
  font-size: 2.2rem;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.4rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.8;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 1rem 0;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 0.75rem;
}

.logo img {
  height: 45px;
  width: 45px;
}

.logo-text {
  font-family: 'Lato', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--primary-color);
}

nav a {
  text-decoration: none;
  color: var(--text-dark);
  font-size: 0.95rem;
  padding: 0.5rem 1rem;
  margin: 0 0.5rem;
  border-radius: 4px;
  transition: all 0.3s ease;
}

nav a:hover {
  background-color: var(--primary-color);
  color: #ffffff;
}

nav a.active {
  background-color: var(--primary-color);
  color: #ffffff;
}

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

body {
  padding-top: 80px;
}

.hero-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, rgba(135, 206, 235, 0.1) 100%);
  padding: 4rem 0;
  text-align: center;
  margin-bottom: 3rem;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-text h1 {
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.hero-image {
  display: flex;
  justify-content: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.section {
  padding: 4rem 0;
  border-bottom: 1px solid var(--border-light);
}

.section:last-of-type {
  border-bottom: none;
}

.section-full-width {
  padding: 4rem 0;
  background-color: var(--bg-light);
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3rem;
}

.two-column-reverse {
  grid-template-columns: 1fr 1fr;
  direction: rtl;
}

.two-column-reverse > * {
  direction: ltr;
}

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

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 2rem 0;
}

.card {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  border-top: 4px solid var(--primary-color);
  transition: all 0.3s ease;
}

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

.card h3 {
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.card p {
  color: var(--text-light);
  margin-bottom: 0;
}

.myth-fact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 2rem 0;
}

.myth, .fact {
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 5px solid;
}

.myth {
  background-color: rgba(255, 182, 193, 0.1);
  border-left-color: #ff6b6b;
}

.fact {
  background-color: rgba(144, 238, 144, 0.1);
  border-left-color: var(--accent-green);
}

.timeline {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin: 2rem 0;
  position: relative;
}

.timeline-item {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 2rem;
  align-items: start;
}

.timeline-year {
  font-family: 'Lato', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--primary-color);
}

.timeline-content {
  background-color: var(--bg-light);
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid var(--primary-color);
}

.cta-button {
  display: inline-block;
  background-color: var(--primary-color);
  color: #ffffff;
  padding: 1rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.cta-button:hover {
  background-color: #6ab3d6;
  box-shadow: 0 4px 12px rgba(135, 206, 235, 0.3);
}

footer {
  background-color: var(--text-dark);
  color: #ffffff;
  padding: 3rem 0 1rem;
  margin-top: 3rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer-section p, .footer-section a {
  color: #cccccc;
  margin-bottom: 0.5rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  text-align: center;
  color: #999999;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  border-top: 1px solid var(--border-light);
  padding: 1.5rem 2rem;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
  z-index: 999;
  display: none;
}

.cookie-banner.show {
  display: block;
}

.cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.cookie-text {
  flex: 1;
  font-size: 0.95rem;
  color: var(--text-light);
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 0.75rem 1.5rem;
  border: 1px solid var(--border-light);
  background-color: #ffffff;
  color: var(--text-dark);
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.cookie-btn-accept {
  background-color: var(--primary-color);
  color: #ffffff;
  border-color: var(--primary-color);
}

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

.cookie-btn:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.disclaimer-section {
  background-color: var(--accent-peach);
  padding: 1.5rem;
  border-radius: 8px;
  margin: 2rem 0;
  border-left: 5px solid #ff8c00;
}

.disclaimer-section h3 {
  color: #333333;
  margin-bottom: 0.5rem;
}

.disclaimer-section p {
  color: #555555;
  margin-bottom: 0;
}

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

  h2 {
    font-size: 1.6rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  header .container {
    flex-direction: column;
    gap: 1rem;
  }

  nav a {
    padding: 0.5rem 0.75rem;
    margin: 0 0.25rem;
  }

  .hero-content, .two-column {
    grid-template-columns: 1fr;
  }

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

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

  .timeline-item {
    grid-template-columns: 1fr;
  }

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

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

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