:root {
  --primary-bg: #E0F2F7;
  --accent-1: #7FB3D5;
  --accent-2: #A2D9CE;
  --accent-3: #F7DC6F;
  --text-dark: #2C3E50;
  --text-light: #FFFFFF;
  --border-light: #BDC3C7;
}

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

html, body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background-color: #FFFFFF;
}

h1, h2, h3 {
  font-weight: 600;
  line-height: 1.2;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  margin-top: 1.5rem;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  margin-top: 1rem;
}

p {
  margin-bottom: 1rem;
  font-size: 1rem;
}

a {
  color: var(--accent-1);
  text-decoration: none;
  transition: color 0.3s;
}

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

button {
  background-color: var(--accent-1);
  color: var(--text-light);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s;
}

button:hover {
  background-color: var(--accent-2);
}

.btn-secondary {
  background-color: var(--accent-3);
  color: var(--text-dark);
}

.btn-secondary:hover {
  background-color: #F5D547;
}

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

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

header .logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--accent-1);
}

header .nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

header .nav-links a {
  color: var(--text-dark);
  font-size: 0.95rem;
  transition: color 0.3s;
}

header .nav-links a:hover {
  color: var(--accent-1);
}

main {
  margin-top: 80px;
  min-height: calc(100vh - 80px);
}

.hero-section {
  background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('images/hero-banner.jpg') center/cover no-repeat;
  height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--text-light);
  padding: 2rem;
}

.hero-section h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-section p {
  font-size: 1.2rem;
  max-width: 600px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.section {
  padding: 3rem 2rem;
  width: 100%;
}

.section-light {
  background-color: var(--primary-bg);
}

.section-white {
  background-color: #FFFFFF;
}

.section-accent {
  background-color: var(--accent-1);
  color: var(--text-light);
}

.section-accent h2,
.section-accent h3 {
  color: var(--text-light);
}

.section-accent a {
  color: var(--accent-3);
}

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

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

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

.card {
  background-color: var(--text-light);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

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

.card h3 {
  margin-top: 0;
}

.card img {
  width: 100%;
  height: auto;
  max-height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.card-button {
  display: inline-block;
  margin-top: 1rem;
}

.image-block {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

footer {
  background-color: var(--text-dark);
  color: var(--text-light);
  padding: 2rem;
  margin-top: 3rem;
}

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

footer h3 {
  color: var(--accent-2);
  margin-top: 0;
}

footer p, footer a {
  font-size: 0.9rem;
}

footer a {
  color: var(--accent-2);
}

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

footer .copyright {
  text-align: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.2);
  grid-column: 1 / -1;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--text-dark);
  color: var(--text-light);
  padding: 1.5rem;
  box-shadow: 0 -2px 8px rgba(0,0,0,0.2);
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

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

.cookie-banner-text {
  flex: 1;
  font-size: 0.95rem;
}

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

.cookie-banner button {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

.accordion {
  border: 1px solid var(--border-light);
  border-radius: 8px;
  margin-bottom: 1rem;
}

.accordion-item {
  border-bottom: 1px solid var(--border-light);
}

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

.accordion-header {
  background-color: var(--primary-bg);
  padding: 1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--text-dark);
}

.accordion-header:hover {
  background-color: var(--accent-2);
}

.accordion-content {
  padding: 1rem;
  display: none;
  background-color: #FFFFFF;
}

.accordion-content.show {
  display: block;
}

.timeline {
  position: relative;
  padding: 2rem 0;
}

.timeline-item {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  position: relative;
}

.timeline-item:before {
  content: '';
  position: absolute;
  left: 30px;
  top: 50px;
  width: 2px;
  height: 100%;
  background-color: var(--accent-1);
}

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

.timeline-dot {
  width: 60px;
  height: 60px;
  background-color: var(--accent-1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-weight: bold;
  flex-shrink: 0;
}

.timeline-content {
  padding-top: 0.5rem;
}

.icon-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.icon-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.icon-square {
  width: 50px;
  height: 50px;
  background-color: var(--accent-1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 1.5rem;
  flex-shrink: 0;
}

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

.myth-box {
  background-color: #FFE5E5;
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid #FF6B6B;
}

.fact-box {
  background-color: #E5F5E5;
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid #51CF66;
}

.disclaimer-box {
  background-color: var(--primary-bg);
  border: 2px solid var(--accent-1);
  border-radius: 8px;
  padding: 1.5rem;
  margin: 2rem 0;
}

.disclaimer-box h3 {
  color: var(--accent-1);
  margin-top: 0;
}

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

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  header {
    padding: 0.75rem 1rem;
  }

  header .nav-links {
    gap: 1rem;
  }

  header .nav-links a {
    font-size: 0.85rem;
  }

  .hero-section {
    height: 350px;
  }

  .hero-section h1 {
    font-size: 1.75rem;
  }

  .hero-section p {
    font-size: 1rem;
  }

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

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

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

  .cookie-banner {
    flex-direction: column;
    gap: 1rem;
  }

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

  .section {
    padding: 2rem 1rem;
  }
}

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

  h2 {
    font-size: 1.25rem;
  }

  header .nav-links {
    flex-wrap: wrap;
  }

  .hero-section h1 {
    font-size: 1.5rem;
  }

  .hero-section p {
    font-size: 0.9rem;
  }
}
