@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700;900&family=Open+Sans:wght@400;600&display=swap');

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

html, body {
  font-family: 'Open Sans', sans-serif;
  background-color: #F0F4F8;
  color: #212121;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
  font-weight: 900;
  color: #212121;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2rem;
  color: #212121;
  margin-bottom: 1.25rem;
}

h3 {
  font-size: 1.5rem;
  color: #212121;
  margin-bottom: 0.75rem;
}

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

body {
  padding-top: 60px;
}

header {
  position: sticky;
  top: 0;
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 1030;
  padding: 1rem 0;
}

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

.navbar-brand {
  font-family: 'Lato', sans-serif;
  font-size: 1.75rem;
  font-weight: 900;
  color: #4CAF50;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.navbar-brand:hover {
  color: #45a049;
}

.navbar-brand img {
  height: 40px;
  width: auto;
}

nav a {
  color: #212121;
  text-decoration: none;
  margin: 0 1.5rem;
  font-weight: 500;
  font-size: 16px;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #4CAF50;
}

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

section {
  padding: 4rem 0;
}

section.light-bg {
  background-color: #F0F4F8;
}

section.white-bg {
  background-color: #ffffff;
}

.hero {
  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;
  background-attachment: fixed;
  color: #ffffff;
  padding: 8rem 2rem;
  text-align: center;
  margin-top: -60px;
  padding-top: calc(8rem + 60px);
}

.hero h1 {
  color: #ffffff;
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero p {
  color: #F0F4F8;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.disclaimer-hero {
  color: #FFC107;
  font-size: 1rem;
  font-weight: 600;
  margin-top: 1rem;
}

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

.card {
  background-color: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

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

.card-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.card-body {
  padding: 1.5rem;
}

.card-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: #212121;
}

.card-text {
  font-size: 15px;
  color: #666;
  line-height: 1.5;
}

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

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

.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  background-color: #4CAF50;
  color: #ffffff;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
  font-size: 15px;
}

.btn:hover {
  background-color: #45a049;
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: #FFC107;
  color: #212121;
}

.btn-secondary:hover {
  background-color: #ffb300;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  overflow: hidden;
}

th {
  background-color: #4CAF50;
  color: #ffffff;
  padding: 1rem;
  text-align: left;
  font-weight: 600;
}

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

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

ul, ol {
  margin: 1rem 0 1rem 2rem;
  line-height: 1.8;
}

li {
  margin-bottom: 0.5rem;
}

footer {
  background-color: #212121;
  color: #F0F4F8;
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

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

.footer-section h4 {
  color: #4CAF50;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.footer-section p, .footer-section a {
  font-size: 14px;
  line-height: 1.8;
  color: #F0F4F8;
}

.footer-section a {
  text-decoration: none;
  cursor: pointer;
  color: #FFC107;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #4CAF50;
}

.footer-bottom {
  border-top: 1px solid #444;
  padding: 1.5rem 2rem;
  text-align: center;
  font-size: 13px;
  color: #999;
  max-width: 1400px;
  margin: 0 auto;
}

.faq-item {
  background-color: #ffffff;
  margin: 1rem 0;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.faq-question {
  padding: 1rem 1.5rem;
  background-color: #F0F4F8;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: #e0e8f0;
}

.faq-answer {
  padding: 1rem 1.5rem;
  display: none;
  background-color: #ffffff;
  line-height: 1.6;
}

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

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  overflow-y: auto;
}

.modal.show {
  display: block;
}

.modal-content {
  background-color: #ffffff;
  margin: 5% auto;
  padding: 2rem;
  border-radius: 8px;
  max-width: 700px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.modal-header h2 {
  margin: 0;
  font-size: 1.75rem;
}

.close-modal {
  font-size: 28px;
  font-weight: bold;
  color: #aaa;
  cursor: pointer;
  transition: color 0.3s ease;
  border: none;
  background: none;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.close-modal:hover {
  color: #212121;
}

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

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

.cookie-text {
  flex: 1;
  min-width: 250px;
  font-size: 14px;
  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;
  font-size: 14px;
  transition: background-color 0.3s ease;
}

.cookie-accept {
  background-color: #4CAF50;
  color: #ffffff;
}

.cookie-accept:hover {
  background-color: #45a049;
}

.cookie-reject {
  background-color: #999;
  color: #ffffff;
}

.cookie-reject:hover {
  background-color: #777;
}

.cookie-more {
  background-color: transparent;
  color: #FFC107;
  border: 1px solid #FFC107;
}

.cookie-more:hover {
  background-color: #FFC107;
  color: #212121;
}

.form-group {
  margin-bottom: 1.5rem;
}

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #212121;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  transition: border-color 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus {
  outline: none;
  border-color: #4CAF50;
  box-shadow: 0 0 4px rgba(76, 175, 80, 0.2);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.form-disclaimer {
  background-color: #F0F4F8;
  padding: 1rem;
  border-left: 4px solid #FFC107;
  border-radius: 4px;
  margin: 1.5rem 0;
  font-size: 14px;
  color: #666;
}

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

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  .navbar {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 1rem;
  }

  nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
  }

  nav a {
    margin: 0.25rem 0.5rem;
    font-size: 14px;
  }

  .hero {
    padding: 4rem 1rem;
    background-attachment: scroll;
    margin-top: 0;
    padding-top: 4rem;
  }

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

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

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

  .container-wide {
    padding: 0 1rem;
  }

  section {
    padding: 2rem 0;
  }

  .footer-content {
    gap: 1rem;
    padding: 0 1rem;
    margin-bottom: 1rem;
  }

  .cookie-banner {
    flex-direction: column;
    padding: 1rem;
    gap: 0.75rem;
  }

  .cookie-buttons {
    width: 100%;
    gap: 0.5rem;
  }

  .cookie-btn {
    flex: 1;
    padding: 0.75rem 0.5rem;
  }
}

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

.mt-3 {
  margin-top: 3rem;
}

.mb-3 {
  margin-bottom: 3rem;
}

.accent-text {
  color: #4CAF50;
  font-weight: 600;
}
