html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  background-color: #f5f5f5;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 700;
  color: #2c3e50;
  line-height: 1.3;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
}

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

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

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: white;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.navbar-brand {
  font-weight: 800;
  font-size: 1.5rem;
  color: #2c3e50;
  font-family: 'Montserrat', sans-serif;
}

.navbar-brand:hover {
  color: #27ae60;
}

.nav-link {
  color: #2c3e50 !important;
  font-weight: 500;
  transition: color 0.3s ease;
  margin-left: 0.5rem;
}

.nav-link:hover {
  color: #27ae60 !important;
}

.hero {
  background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('images/hero-fresh-produce.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  padding: 120px 20px;
  text-align: center;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

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

.hero p {
  color: white;
  font-size: 1.3rem;
  max-width: 700px;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
  margin: 0 auto;
}

section {
  padding: 100px 20px;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.two-column {
  display: flex;
  align-items: center;
  gap: 60px;
}

.two-column-text {
  flex: 1;
}

.two-column-image {
  flex: 1;
  text-align: center;
}

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

.card-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.card-body {
  padding: 25px;
}

.card h3 {
  margin-bottom: 15px;
  color: #2c3e50;
}

.card p {
  margin-bottom: 20px;
  color: #555;
  font-size: 1rem;
}

.btn-cta {
  display: inline-block;
  background-color: #27ae60;
  color: white;
  padding: 12px 30px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-cta:hover {
  background-color: #229954;
  box-shadow: 0 4px 12px rgba(39, 174, 96, 0.3);
  text-decoration: none;
  color: white;
}

.btn-secondary {
  display: inline-block;
  background-color: #e67e22;
  color: white;
  padding: 12px 30px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
  margin-right: 15px;
  margin-bottom: 15px;
}

.btn-secondary:hover {
  background-color: #d35400;
  text-decoration: none;
  color: white;
}

.water-section {
  background: linear-gradient(135deg, rgba(39, 174, 96, 0.1) 0%, rgba(230, 126, 34, 0.1) 100%);
  position: relative;
  overflow: hidden;
}

.water-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.water-content ul {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.water-content li {
  margin-bottom: 30px;
  padding-left: 40px;
  position: relative;
  font-size: 1.1rem;
  line-height: 1.8;
}

.water-content li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #27ae60;
  font-weight: bold;
  font-size: 1.3rem;
}

.table-responsive {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  margin-top: 40px;
}

table {
  width: 100%;
  border-collapse: collapse;
}

thead {
  background-color: #2c3e50;
  color: white;
}

th {
  padding: 20px;
  text-align: left;
  font-weight: 600;
}

td {
  padding: 20px;
  border-bottom: 1px solid #eee;
}

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

.accordion {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  margin-bottom: 20px;
}

.accordion-button {
  background-color: white;
  color: #2c3e50;
  border: none;
  padding: 20px;
  text-align: left;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 600;
  width: 100%;
  transition: background-color 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-button:hover {
  background-color: #f9f9f9;
}

.accordion-button.active {
  background-color: #27ae60;
  color: white;
}

.accordion-content {
  padding: 0 20px 20px 20px;
  display: none;
  background-color: #fafafa;
}

.accordion-content.active {
  display: block;
}

.accordion-content p {
  margin-bottom: 15px;
  font-size: 1rem;
  line-height: 1.8;
}

.disclaimer-box {
  background-color: #f0f8f0;
  border-left: 4px solid #27ae60;
  padding: 30px;
  border-radius: 4px;
  margin-top: 60px;
  font-size: 1rem;
  line-height: 1.8;
}

.disclaimer-box h3 {
  color: #27ae60;
  margin-top: 0;
}

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

.resources-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

footer {
  background-color: #2c3e50;
  color: white;
  padding: 60px 20px;
  margin-top: 80px;
}

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

.footer-section h4 {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 20px;
}

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

.footer-section ul li {
  margin-bottom: 12px;
}

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

.footer-section a:hover {
  color: #27ae60;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 30px;
  font-size: 0.95rem;
}

.knowledge-base-content {
  max-width: 900px;
  margin: 0 auto;
  background: white;
  padding: 40px;
  border-radius: 8px;
}

.knowledge-base-content h2 {
  color: #2c3e50;
  margin-top: 30px;
  margin-bottom: 20px;
}

.knowledge-base-content h3 {
  color: #27ae60;
  margin-top: 25px;
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.knowledge-base-content ul {
  margin-bottom: 20px;
  padding-left: 30px;
}

.knowledge-base-content ul li {
  margin-bottom: 10px;
  line-height: 1.8;
}

.privacy-content {
  max-width: 900px;
  margin: 0 auto;
  background: white;
  padding: 40px;
  border-radius: 8px;
}

.privacy-content h2 {
  color: #2c3e50;
  margin-top: 30px;
  margin-bottom: 20px;
}

.privacy-content p {
  margin-bottom: 15px;
  line-height: 1.8;
}

.privacy-content ul {
  margin-bottom: 20px;
  padding-left: 30px;
}

.privacy-content ul li {
  margin-bottom: 10px;
  line-height: 1.8;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: white;
  border-top: 2px solid #2c3e50;
  padding: 20px;
  z-index: 999;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
  display: none;
}

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

.cookie-banner-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-banner-text {
  flex: 1;
  font-size: 0.95rem;
  line-height: 1.6;
  min-width: 250px;
}

.cookie-banner-text strong {
  color: #2c3e50;
}

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

.cookie-banner-buttons button {
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-accept {
  background-color: #27ae60;
  color: white;
}

.btn-accept:hover {
  background-color: #229954;
}

.btn-reject {
  background-color: #bdc3c7;
  color: #333;
}

.btn-reject:hover {
  background-color: #95a5a6;
}

.btn-more {
  background-color: transparent;
  color: #2c3e50;
  border: 1px solid #2c3e50;
  text-decoration: none;
  padding: 10px 20px;
}

.btn-more:hover {
  background-color: #2c3e50;
  color: white;
}

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

  h2 {
    font-size: 1.75rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  section {
    padding: 60px 20px;
  }

  .two-column {
    flex-direction: column;
    gap: 40px;
  }

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

  .hero {
    padding: 80px 20px;
  }

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

  .navbar-brand {
    font-size: 1.25rem;
  }

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

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

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

@media (max-width: 480px) {
  body {
    font-size: 15px;
  }

  h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.35rem;
  }

  h3 {
    font-size: 1.1rem;
  }

  section {
    padding: 40px 15px;
  }

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

  .hero {
    padding: 60px 15px;
    min-height: 400px;
  }
}
