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

:root {
  --primary: #E0F2F7;
  --accent-1: #A2D9CE;
  --accent-2: #5DADE2;
  --accent-3: #F7DC6F;
  --text-dark: #2C3E50;
  --text-light: #34495E;
  --white: #FFFFFF;
  --gray-light: #ECF0F1;
  --gray-medium: #BDC3C7;
  --black: #1A1A1A;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: var(--text-dark);
}

h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  margin-top: 2rem;
}

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

p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  line-height: 1.8;
}

header {
  background-color: var(--white);
  border-bottom: 1px solid var(--gray-light);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header-container {
  max-width: 100%;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-2);
  text-decoration: none;
}

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

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

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

body {
  padding-top: 70px;
}

.hero {
  background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('images/hero-vegetables.jpg');
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: 120px 2rem;
  text-align: center;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.hero h1 {
  color: var(--white);
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.hero p {
  color: var(--white);
  font-size: 1.3rem;
  max-width: 700px;
}

section {
  padding: 60px 2rem;
}

.section-full {
  width: 100%;
}

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

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

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

.row-two-col img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

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

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

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

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

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

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

.bg-accent-2 {
  background-color: var(--accent-1);
}

.text-accent {
  color: var(--accent-2);
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background: var(--white);
}

table th {
  background-color: var(--accent-2);
  color: var(--white);
  padding: 1rem;
  text-align: left;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}

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

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

.faq-item {
  border-bottom: 1px solid var(--gray-light);
  padding: 1.5rem 0;
}

.faq-item h4 {
  cursor: pointer;
  color: var(--accent-2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease;
}

.faq-item h4:hover {
  color: var(--accent-1);
}

.faq-answer {
  display: none;
  margin-top: 1rem;
  padding: 1rem 0;
  color: var(--text-light);
}

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

footer {
  background-color: var(--text-dark);
  color: var(--white);
  padding: 60px 2rem;
  margin-top: 60px;
}

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

.footer-section h4 {
  color: var(--accent-2);
  margin-bottom: 1rem;
  font-family: 'Montserrat', sans-serif;
}

.footer-section ul {
  list-style: none;
}

.footer-section a {
  color: var(--gray-light);
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

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

.footer-bottom {
  border-top: 1px solid var(--gray-medium);
  padding-top: 2rem;
  text-align: center;
  color: var(--gray-light);
}

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

.disclaimer-box h3 {
  color: var(--accent-2);
  margin-bottom: 1rem;
}

.cta-button {
  display: inline-block;
  background-color: var(--accent-2);
  color: var(--white);
  padding: 0.8rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-family: 'Open Sans', sans-serif;
}

.cta-button:hover {
  background-color: var(--accent-1);
  color: var(--text-dark);
}

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

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

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

.cookie-btn {
  padding: 0.6rem 1.5rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

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

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

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

.cookie-btn-reject:hover {
  background-color: var(--gray-light);
}

.cookie-btn-learn {
  background-color: transparent;
  color: var(--accent-2);
  border: 2px solid var(--accent-2);
}

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

.list-styled {
  list-style: none;
  padding-left: 0;
}

.list-styled li {
  padding-left: 2rem;
  margin-bottom: 1rem;
  position: relative;
}

.list-styled li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-2);
  font-weight: bold;
}

.highlight-box {
  background-color: var(--gray-light);
  padding: 2rem;
  border-radius: 8px;
  margin: 2rem 0;
}

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

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

  h2 {
    font-size: 1.5rem;
  }

  .hero {
    padding: 80px 1rem;
    min-height: 400px;
  }

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

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

  .header-container {
    padding: 0.8rem 1rem;
  }

  nav ul {
    gap: 1rem;
    flex-wrap: wrap;
  }

  nav a {
    font-size: 0.85rem;
  }

  .row-two-col {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

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

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

  .cookie-banner-text {
    margin-right: 0;
  }

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

@media (max-width: 480px) {
  section {
    padding: 40px 1rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.2rem;
  }

  p {
    font-size: 1rem;
  }

  .logo {
    font-size: 1.3rem;
  }

  nav ul {
    display: none;
  }

  body {
    padding-top: 60px;
  }
}
