:root {
  --primary: #D8E2DC;
  --accent1: #BBE7D7;
  --accent2: #8ECDC3;
  --accent3: #FFC0CB;
  --dark: #2c3e3f;
  --light: #f8f9fa;
  --border: #e0e0e0;
}

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

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

header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.navbar-brand {
  font-size: 24px;
  font-weight: 700;
  color: var(--dark);
  text-decoration: none;
  letter-spacing: 1px;
}

.navbar-nav .nav-link {
  color: var(--dark);
  font-size: 14px;
  font-weight: 500;
  margin: 0 15px;
  transition: color 0.3s ease;
  text-decoration: none;
}

.navbar-nav .nav-link:hover {
  color: var(--accent2);
}

.navbar-nav .nav-link.active {
  color: var(--accent2);
  border-bottom: 2px solid var(--accent2);
}

main {
  margin-top: 70px;
}

.hero-section {
  position: relative;
  height: 100vh;
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/hero-vegetables.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-align: center;
  overflow: hidden;
}

.hero-content h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-content p {
  font-size: 20px;
  margin-bottom: 30px;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

section {
  padding: 80px 0;
}

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 40px;
  color: var(--dark);
}

.section-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 30px;
  color: var(--dark);
}

.section-subtitle-small {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  margin-top: 25px;
  color: var(--dark);
}

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

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

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

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

.benefits-list {
  list-style: none;
}

.benefits-list li {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  font-size: 16px;
  line-height: 1.6;
}

.benefits-list li:last-child {
  border-bottom: none;
}

.benefits-list strong {
  color: var(--accent2);
  font-weight: 600;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 40px;
}

table thead {
  background-color: var(--primary);
}

table th {
  padding: 15px;
  text-align: left;
  font-weight: 600;
  border: 1px solid var(--border);
  font-size: 14px;
}

table td {
  padding: 15px;
  border: 1px solid var(--border);
  font-size: 14px;
}

table tbody tr:nth-child(even) {
  background-color: rgba(216, 226, 220, 0.3);
}

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

.timeline-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

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

.timeline-item.reverse {
  direction: rtl;
}

.timeline-item.reverse > * {
  direction: ltr;
}

.timeline-content h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--accent2);
}

.timeline-content p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--dark);
}

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

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

.card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.card:hover {
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transform: translateY(-5px);
  border-color: var(--accent2);
}

.card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--accent2);
}

.card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--dark);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 20px;
}

.full-width-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent1) 100%);
  padding: 80px 0;
}

.full-width-section h2 {
  color: var(--dark);
}

.qa-item {
  background: #ffffff;
  border-left: 4px solid var(--accent2);
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.qa-item h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--accent2);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.qa-item p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--dark);
  display: none;
}

.qa-item p.show {
  display: block;
}

footer {
  background-color: var(--dark);
  color: #ffffff;
  padding: 60px 0 30px;
  font-size: 14px;
  line-height: 1.8;
}

footer h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--accent2);
}

footer a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

footer p {
  margin-bottom: 10px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.footer-links a {
  padding-right: 20px;
  border-right: 1px solid rgba(255,255,255,0.2);
}

.footer-links a:last-child {
  border-right: none;
}

.copyright {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 20px;
  margin-top: 30px;
  text-align: center;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  color: #ffffff;
  padding: 20px;
  z-index: 999;
  display: none;
}

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

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

.cookie-banner-text {
  flex: 1;
  font-size: 14px;
}

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

.btn {
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-primary {
  background-color: var(--accent2);
  color: #ffffff;
}

.btn-primary:hover {
  background-color: var(--accent1);
}

.btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
}

.btn-secondary:hover {
  background-color: rgba(255,255,255,0.1);
}

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

.disclaimer-box {
  background: rgba(139, 205, 195, 0.1);
  border: 1px solid var(--accent2);
  border-radius: 8px;
  padding: 30px;
  margin: 40px 0;
  font-size: 14px;
  line-height: 1.8;
}

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

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 32px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .section-title {
    font-size: 28px;
  }

  .two-column,
  .two-column-reverse,
  .cards-grid,
  .timeline-item {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .two-column-reverse img {
    order: unset;
  }

  .timeline-item.reverse {
    direction: ltr;
  }

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

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

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

  .cookie-banner-buttons .btn {
    flex: 1;
  }

  .container-wide {
    padding: 0 20px;
  }

  .navbar-nav .nav-link {
    margin: 0 10px;
    font-size: 12px;
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 24px;
  }

  .section-title {
    font-size: 22px;
  }

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

  table {
    font-size: 12px;
  }

  table th,
  table td {
    padding: 10px;
  }

  .navbar-brand {
    font-size: 18px;
  }
}
