:root {
  --primary: #EBF5FB;
  --accent-1: #9AD1ED;
  --accent-2: #5C7F9B;
  --accent-3: #A8DDCF;
  --dark: #1a1a1a;
  --light: #f9f9f9;
  --text-dark: #2c3e50;
  --text-light: #555;
  --border: #ddd;
}

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

html, body {
  height: 100%;
  font-family: 'Open Sans', 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-dark);
  background-color: var(--light);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
}

h2 {
  font-size: 2rem;
  font-weight: 700;
}

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

p {
  margin-bottom: 1rem;
  color: var(--text-light);
}

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

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

header .logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-2);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

header .logo img {
  width: 32px;
  height: 32px;
}

header nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
}

header nav a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

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

/* ===== HERO BLOCK ===== */
.hero {
  margin-top: 70px;
  height: 100vh;
  background: linear-gradient(135deg, rgba(154, 209, 237, 0.85) 0%, rgba(92, 127, 155, 0.85) 100%);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('images/hero-fresh-vegetables.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.5;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero h1 {
  font-size: 3rem;
  color: white;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

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

/* ===== SECTIONS ===== */
section {
  padding: 4rem 2rem;
}

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

/* ===== TWO COLUMN SECTION ===== */
.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.two-column-left {
  order: 1;
}

.two-column-right {
  order: 2;
}

.two-column-left.reverse {
  order: 2;
}

.two-column-right.reverse {
  order: 1;
}

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

/* ===== CARDS GRID ===== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.card {
  background: white;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  text-align: center;
}

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

.card-icon {
  width: 60px;
  height: 60px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 2rem;
}

.card h3 {
  margin-bottom: 1rem;
}

/* ===== TABLE STYLES ===== */
table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  overflow: hidden;
}

th {
  background: var(--accent-2);
  color: white;
  padding: 1rem;
  text-align: left;
  font-weight: 600;
}

td {
  padding: 1rem;
  border-bottom: 1px solid var(--border);
}

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

tr:hover {
  background: var(--primary);
}

/* ===== TIMELINE ===== */
.timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.timeline-item {
  text-align: center;
  padding: 1.5rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.timeline-item::before {
  content: '';
  width: 30px;
  height: 30px;
  background: var(--accent-1);
  border-radius: 50%;
  display: block;
  margin: 0 auto 1rem;
}

/* ===== MYTH FACT SECTION ===== */
.myth-fact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.myth, .fact {
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.myth {
  background: rgba(254, 237, 230, 0.5);
  border-left: 4px solid #FF6B6B;
}

.fact {
  background: rgba(230, 247, 230, 0.5);
  border-left: 4px solid #51CF66;
}

.myth h3, .fact h3 {
  margin-top: 0;
}

/* ===== FULL WIDTH SECTION ===== */
.full-width-section {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, var(--accent-1) 0%, var(--accent-3) 100%);
  color: white;
  text-align: center;
}

.full-width-content {
  max-width: 900px;
  margin: 0 auto;
}

.full-width-content h2 {
  color: white;
}

.full-width-content p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.1rem;
}

/* ===== BUTTON STYLES ===== */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: var(--accent-2);
  color: white;
  text-decoration: none;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn:hover {
  background: var(--accent-1);
  box-shadow: 0 4px 12px rgba(154, 209, 237, 0.3);
  transform: translateY(-2px);
}

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

.btn-secondary:hover {
  background: #7fc7b8;
}

/* ===== SECTION BACKGROUNDS ===== */
.bg-light {
  background: var(--primary);
}

.bg-accent {
  background: var(--accent-3);
}

/* ===== FOOTER ===== */
footer {
  background: var(--text-dark);
  color: white;
  padding: 3rem 2rem;
  margin-top: 4rem;
}

footer .footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

footer h4 {
  color: var(--accent-1);
  margin-bottom: 1rem;
}

footer ul {
  list-style: none;
}

footer ul li {
  margin-bottom: 0.5rem;
}

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

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  box-shadow: 0 -2px 16px rgba(0, 0, 0, 0.1);
  padding: 1.5rem 2rem;
  z-index: 999;
  display: none;
}

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

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
}

.cookie-text {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.5;
}

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

.cookie-btn {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  white-space: nowrap;
}

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

.cookie-btn-accept:hover {
  background: var(--accent-1);
}

.cookie-btn-reject {
  background: var(--border);
  color: var(--text-dark);
}

.cookie-btn-reject:hover {
  background: #ccc;
}

.cookie-btn-more {
  background: transparent;
  color: var(--accent-2);
  text-decoration: underline;
}

/* ===== DISCLAIMER STYLES ===== */
.disclaimer-box {
  background: rgba(255, 193, 7, 0.1);
  border-left: 4px solid #FFC107;
  padding: 1.5rem;
  border-radius: 4px;
  margin: 2rem 0;
}

.disclaimer-box h4 {
  color: #FF8C00;
  margin-top: 0;
}

/* ===== FAQ STYLES ===== */
.faq-item {
  background: white;
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  background: var(--primary);
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: var(--accent-1);
}

.faq-answer {
  padding: 1.5rem;
  display: none;
  background: white;
  color: var(--text-light);
}

.faq-answer.show {
  display: block;
}

.faq-icon {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.faq-icon.open {
  transform: rotate(180deg);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  header .navbar {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }

  header nav ul {
    flex-direction: column;
    gap: 1rem;
  }

  .hero {
    height: auto;
    padding: 4rem 2rem;
    margin-top: 100px;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

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

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

  .two-column-left, .two-column-right {
    order: unset;
  }

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

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

  .cookie-content {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .cookie-buttons {
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
  }

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

  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.4rem;
  }

  section {
    padding: 2rem 1rem;
  }
}

@media (max-width: 480px) {
  header .logo {
    font-size: 1.2rem;
  }

  header nav ul {
    gap: 0.5rem;
    font-size: 0.85rem;
  }

  .hero h1 {
    font-size: 1.4rem;
  }

  h1 {
    font-size: 1.4rem;
  }

  h2 {
    font-size: 1.1rem;
  }

  .btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }

  .two-column {
    gap: 1.5rem;
  }

  table {
    font-size: 0.85rem;
  }

  th, td {
    padding: 0.75rem;
  }
}
