:root {
  --color-light: #F8F8F8;
  --color-olive: #6B8E23;
  --color-sienna: #A0522D;
  --color-cadet: #5F9EA0;
  --color-white: #FFFFFF;
  --color-dark: #2C2C2C;
  --color-gray: #5A5A5A;
  --spacing-base: 1rem;
}

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

html, body {
  font-family: 'Open Sans', 'Lato', 'Roboto', sans-serif;
  color: var(--color-dark);
  background-color: var(--color-white);
  line-height: 1.6;
  font-size: 16px;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--color-white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  z-index: 1000;
  padding: 0.8rem 0;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.logo img {
  height: 40px;
  width: 40px;
}

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

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

@media (max-width: 768px) {
  .header-container {
    flex-wrap: wrap;
  }

  nav {
    display: none;
  }

  nav.active {
    display: flex;
    flex-direction: column;
    width: 100%;
    background-color: var(--color-light);
    padding: 1rem 0;
  }

  nav a {
    margin: 0.5rem 0;
    padding-left: 2rem;
  }
}

main {
  margin-top: 70px;
}

section {
  padding: 80px 0;
}

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

h1, h2, h3 {
  font-family: 'Montserrat', 'Open Sans', sans-serif;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--color-dark);
}

h1 {
  font-size: 3rem;
  line-height: 1.2;
}

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

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

p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.2rem;
  color: var(--color-gray);
}

.hero {
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('images/hero-vegetables.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-white);
  margin-top: 70px;
}

.hero-content h1 {
  color: var(--color-white);
  font-size: 3.5rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
}

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

.section-white {
  background-color: var(--color-white);
}

.row-flex {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.row-flex.reverse {
  flex-direction: row-reverse;
}

.col-text {
  flex: 1;
}

.col-image {
  flex: 1;
}

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

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.card {
  background-color: var(--color-white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 12px 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 img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.card h3 {
  color: var(--color-olive);
  margin-bottom: 1rem;
}

.card p {
  font-size: 0.95rem;
}

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

.info-text {
  padding-right: 2rem;
}

.info-image {
  text-align: center;
}

.info-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.table-container {
  overflow-x: auto;
  margin: 2rem 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  background-color: var(--color-white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  overflow: hidden;
}

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

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

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

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

.btn {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  background-color: var(--color-olive);
  color: var(--color-white);
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn:hover {
  background-color: var(--color-sienna);
  opacity: 0.9;
}

.btn-secondary {
  background-color: var(--color-cadet);
}

.btn-secondary:hover {
  background-color: var(--color-olive);
}

footer {
  background-color: var(--color-dark);
  color: var(--color-white);
  padding: 3rem 0 2rem;
  margin-top: 4rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

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

.footer-section h4 {
  margin-bottom: 1rem;
  color: var(--color-olive);
  font-size: 1.1rem;
}

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

.footer-section ul li {
  margin-bottom: 0.7rem;
}

.footer-section a {
  color: var(--color-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.9rem;
  color: var(--color-light);
}

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

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

.list-styled li:before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--color-olive);
  font-weight: bold;
}

.disclaimer {
  background-color: var(--color-light);
  border-left: 4px solid var(--color-cadet);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 4px;
}

.disclaimer p {
  margin: 0.5rem 0;
  font-size: 0.95rem;
}

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

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

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

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

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

.cookie-accept {
  background-color: var(--color-olive);
  color: var(--color-white);
}

.cookie-accept:hover {
  background-color: var(--color-sienna);
}

.cookie-reject {
  background-color: transparent;
  border: 1px solid var(--color-white);
  color: var(--color-white);
}

.cookie-reject:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.cookie-info {
  background-color: transparent;
  border: 1px solid var(--color-white);
  color: var(--color-white);
}

.cookie-info:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

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

.faq-item h4 {
  color: var(--color-olive);
  margin-bottom: 0.8rem;
  cursor: pointer;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

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

.faq-answer {
  display: none;
  color: var(--color-gray);
  line-height: 1.8;
}

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

.navbar-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-olive);
  font-size: 1.5rem;
}

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

  h2 {
    font-size: 1.6rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  section {
    padding: 50px 0;
  }

  .hero {
    height: 60vh;
  }

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

  .row-flex {
    flex-direction: column;
    gap: 2rem;
  }

  .row-flex.reverse {
    flex-direction: column;
  }

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

  .info-text {
    padding-right: 0;
  }

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

  .navbar-toggle {
    display: block;
  }

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

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

  .cookie-btn {
    flex: 1;
    min-width: 120px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  nav a {
    margin: 0 0.5rem;
    font-size: 0.85rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.3rem;
  }

  .hero-content h1 {
    font-size: 1.3rem;
  }

  .cookie-text {
    font-size: 0.8rem;
  }

  .cookie-btn {
    padding: 0.5rem 0.8rem;
    font-size: 0.8rem;
  }
}
