:root {
  --primary-color: #ADD8E6;
  --accent-yellow: #FFD700;
  --accent-green: #9ACD32;
  --accent-red: #FF6347;
  --dark-text: #333333;
  --light-bg: #ffffff;
  --border-radius: 8px;
}

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

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

h1, h2, h3 {
  font-family: 'Montserrat', 'Inter', sans-serif;
  font-weight: 700;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3rem;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
}

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

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 1rem;
}

header {
  position: sticky;
  top: 0;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: height 0.3s ease;
}

header .navbar {
  padding: 1rem 0;
  max-width: 1400px;
  margin: 0 auto;
}

header .brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
}

header .nav-link {
  color: var(--dark-text);
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}

header .nav-link:hover {
  color: var(--accent-yellow);
}

main {
  min-height: calc(100vh - 200px);
}

.hero-section {
  position: relative;
  height: 100vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.3);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: white;
  max-width: 800px;
  padding: 2rem;
}

.hero-content h1 {
  color: white;
  margin-bottom: 1.5rem;
}

.hero-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
}

section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 2rem;
}

section.full-width {
  max-width: 100%;
  padding: 80px 2rem;
}

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

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

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

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

.card {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

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

.card-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 1.5rem;
}

.accent-bg {
  background-color: var(--primary-color);
  color: var(--dark-text);
}

.accent-bg h2 {
  color: var(--dark-text);
}

.accent-bg p {
  color: var(--dark-text);
}

img {
  max-width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  display: block;
}

button, .btn {
  background-color: var(--accent-yellow);
  color: var(--dark-text);
  border: none;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

button:hover, .btn:hover {
  background-color: var(--accent-green);
  transform: scale(1.02);
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.5rem;
}

table th {
  background-color: var(--primary-color);
  color: var(--dark-text);
  padding: 1rem;
  text-align: left;
  font-weight: 700;
}

table td {
  padding: 1rem;
  border-bottom: 1px solid #e0e0e0;
}

table tr:hover {
  background-color: #f9f9f9;
}

footer {
  background-color: #2c3e50;
  color: white;
  padding: 3rem 2rem;
  margin-top: 4rem;
}

footer .footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

footer .footer-section h3 {
  color: var(--accent-yellow);
  margin-bottom: 1rem;
}

footer a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

footer p {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.faq-item {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
  color: var(--accent-yellow);
  cursor: pointer;
  user-select: none;
}

.faq-item p {
  display: none;
}

.faq-item.active p {
  display: block;
  margin-top: 1rem;
}

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

.myth, .fact {
  background-color: white;
  padding: 1.5rem;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.myth {
  border-left: 4px solid var(--accent-red);
}

.fact {
  border-left: 4px solid var(--accent-green);
}

.cookies-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: white;
  border-top: 1px solid #e0e0e0;
  padding: 1.5rem;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  display: none;
  max-height: 200px;
  overflow-y: auto;
}

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

.cookies-content {
  flex: 1;
}

.cookies-buttons {
  display: flex;
  gap: 1rem;
  white-space: nowrap;
}

.cookies-buttons button {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

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

  h2 {
    font-size: 1.5rem;
  }

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

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

  section {
    padding: 50px 1rem;
  }

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

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

  .cookies-buttons {
    width: 100%;
    flex-direction: column;
  }

  .cookies-buttons button {
    width: 100%;
  }

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

  header .navbar {
    padding: 0.75rem 0;
  }

  h1 {
    margin-bottom: 1rem;
  }
}

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

  h2 {
    font-size: 1.2rem;
  }

  p {
    font-size: 14px;
  }

  section {
    padding: 30px 1rem;
  }

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