@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Georgia:wght@400;700&display=swap');

:root {
  --color-primary: #2E7D32;
  --color-accent: #FFB300;
  --color-earth: #5D4037;
  --color-cream: #FFFDE7;
  --color-white: #FFFFFF;
  --color-dark: #1A1A1A;
  --color-light-gray: #F5F5F5;
  --spacing-large: 150px;
  --spacing-medium: 75px;
  --spacing-small: 30px;
  --radius: 8px;
}

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

html, body {
  font-family: Georgia, serif;
  color: var(--color-dark);
  background-color: var(--color-white);
  line-height: 1.86;
  font-size: 18px;
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
  font-family: Poppins, sans-serif;
  font-weight: 600;
  color: var(--color-dark);
  line-height: 1.2;
}

h1 {
  font-size: 4rem;
  margin-bottom: var(--spacing-small);
  letter-spacing: -0.5px;
}

h2 {
  font-size: 2.9rem;
  margin-bottom: 25px;
  margin-top: 30px;
}

h3 {
  font-size: 2.1rem;
  margin-bottom: 20px;
  margin-top: 25px;
}

p {
  margin-bottom: 20px;
  font-size: 1.18rem;
  line-height: 1.86;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--color-accent);
  text-decoration: underline;
}

body {
  padding-top: 70px;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--color-white);
  border-bottom: 1px solid #EFEFEF;
  z-index: 1000;
  padding: 15px 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  animation: slideDown 0.5s ease;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

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

.logo {
  font-family: Poppins, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  gap: 10px;
}

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

nav ul {
  list-style: none;
  display: flex;
  gap: 40px;
  align-items: center;
}

nav a {
  font-family: Poppins, sans-serif;
  font-size: 1rem;
  color: var(--color-dark);
  position: relative;
  transition: color 0.3s ease;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-accent);
  transition: width 0.3s ease;
}

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

nav a:hover::after {
  width: 100%;
}

.container {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero {
  width: 100%;
  height: 550px;
  background: linear-gradient(135deg, rgba(46, 125, 50, 0.4), rgba(255, 179, 0, 0.2)), url(images/hero-fresh-produce.jpg) center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-white);
  position: relative;
  animation: fadeIn 1s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.hero-content {
  max-width: 800px;
}

.hero h1 {
  color: var(--color-white);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.5rem;
  color: var(--color-white);
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

section {
  padding: var(--spacing-large) 0;
}

section:nth-child(even) {
  background: linear-gradient(135deg, rgba(46, 125, 50, 0.08), rgba(255, 253, 231, 0.5));
}

.section-title {
  text-align: center;
  margin-bottom: var(--spacing-medium);
}

.section-title h2 {
  color: var(--color-primary);
  margin-bottom: 15px;
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: var(--spacing-medium);
}

.two-column img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius);
  animation: scaleIn 0.6s ease;
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.two-column.reverse {
  direction: rtl;
}

.two-column.reverse > * {
  direction: ltr;
}

.highlight {
  color: var(--color-accent);
  font-style: italic;
  font-weight: 600;
}

.card {
  background-color: var(--color-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #EFEFEF;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(46, 125, 50, 0.15);
}

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

.card-content {
  padding: 25px;
}

.card h3 {
  color: var(--color-primary);
  margin-bottom: 15px;
}

.card p {
  font-size: 1rem;
  margin-bottom: 15px;
}

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

.btn {
  display: inline-block;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  color: var(--color-white);
  font-family: Poppins, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(46, 125, 50, 0.4);
  color: var(--color-white);
}

.btn-secondary {
  background-color: var(--color-light-gray);
  color: var(--color-primary);
}

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

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #EFEFEF;
  padding: 25px 0;
}

.faq-question {
  font-family: Poppins, sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.faq-question:hover {
  color: var(--color-accent);
}

.faq-toggle {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  margin-top: 0;
  line-height: 1.86;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  margin-top: 15px;
}

.disclaimer {
  background-color: var(--color-cream);
  border-left: 4px solid var(--color-primary);
  padding: 25px;
  border-radius: var(--radius);
  margin: var(--spacing-medium) 0;
  font-size: 0.95rem;
  line-height: 1.8;
}

.disclaimer h4 {
  color: var(--color-primary);
  margin-bottom: 10px;
  font-family: Poppins, sans-serif;
}

form {
  max-width: 600px;
  margin: 0 auto;
  background-color: var(--color-light-gray);
  padding: 40px;
  border-radius: var(--radius);
}

.form-group {
  margin-bottom: 25px;
}

label {
  display: block;
  font-family: Poppins, sans-serif;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--color-dark);
}

input[type="email"],
textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #DCDCDC;
  border-radius: var(--radius);
  font-family: Georgia, serif;
  font-size: 1rem;
  line-height: 1.5;
  transition: border-color 0.3s ease;
}

input[type="email"]:focus,
textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
}

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

button[type="submit"] {
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  color: var(--color-white);
  padding: 14px 32px;
  border: none;
  border-radius: var(--radius);
  font-family: Poppins, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

button[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(46, 125, 50, 0.4);
}

footer {
  background-color: var(--color-dark);
  color: var(--color-white);
  padding: var(--spacing-medium) 0 30px;
  margin-top: var(--spacing-large);
  border-top: 1px solid rgba(255, 179, 0, 0.2);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-bottom: var(--spacing-medium);
}

.footer-section h4 {
  color: var(--color-accent);
  margin-bottom: 15px;
  font-family: Poppins, sans-serif;
  font-size: 1.1rem;
}

.footer-section p {
  font-size: 0.95rem;
  margin-bottom: 10px;
  line-height: 1.8;
}

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

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

.footer-section a {
  color: var(--color-cream);
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--color-accent);
  text-decoration: none;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 179, 0, 0.2);
  padding-top: 20px;
  text-align: center;
  font-size: 0.9rem;
  color: #AAAAAA;
}

.educational-notice {
  text-align: center;
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: 20px;
  font-family: Poppins, sans-serif;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--color-white);
  border-top: 2px solid var(--color-primary);
  padding: 20px;
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.1);
  z-index: 999;
  display: none;
  animation: slideUp 0.4s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

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

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

.cookie-text {
  flex: 1;
  font-size: 0.95rem;
  line-height: 1.6;
}

.cookie-text a {
  color: var(--color-primary);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 15px;
  white-space: nowrap;
}

.cookie-btn {
  padding: 10px 20px;
  border: none;
  border-radius: var(--radius);
  font-family: Poppins, sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.cookie-btn-accept {
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  color: var(--color-white);
}

.cookie-btn-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(46, 125, 50, 0.4);
}

.cookie-btn-reject {
  background-color: var(--color-light-gray);
  color: var(--color-dark);
  border: 1px solid #DCDCDC;
}

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

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

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  .hero {
    height: 350px;
  }

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

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

  section {
    padding: 80px 0;
  }

  :root {
    --spacing-large: 80px;
  }

  .two-column {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .two-column.reverse {
    direction: ltr;
  }

  nav ul {
    gap: 20px;
  }

  nav a {
    font-size: 0.9rem;
  }

  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

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

  .cookie-btn {
    width: 100%;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 25px;
  }

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

  form {
    padding: 25px;
  }
}

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

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  p, body {
    font-size: 1rem;
  }

  .hero {
    height: 280px;
  }

  nav ul {
    gap: 10px;
    font-size: 0.85rem;
  }

  section {
    padding: 50px 0;
  }

  :root {
    --spacing-large: 50px;
    --spacing-medium: 30px;
  }

  .header-container {
    padding: 0 15px;
  }
}
