:root {
  --primary-light: #f0f9f4;
  --primary-accent: #16a34a;
  --secondary-accent: #eab308;
  --tertiary-accent: #3b82f6;
  --text-dark: #1f2937;
  --text-light: #6b7280;
  --border-light: #e5e7eb;
}

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

html, body {
  font-family: system-ui, 'Segoe UI', Roboto, -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: #ffffff;
  color: var(--text-dark);
  line-height: 1.5;
}

body {
  font-size: 1rem;
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.8rem;
  margin-top: 1.5rem;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0.6rem;
}

p {
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.68;
  margin-bottom: 1.2rem;
  color: var(--text-dark);
}

strong {
  font-weight: 600;
  color: var(--primary-accent);
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #ffffff;
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.header-container {
  max-width: 1560px;
  margin: 0 auto;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-accent);
  text-decoration: none;
  display: flex;
  align-items: center;
}

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

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

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

main {
  max-width: 1560px;
  margin: 0 auto;
  padding: 0 5%;
}

.hero-section {
  width: 100%;
  margin: 0 -5%;
  padding: 0;
  background: linear-gradient(135deg, var(--primary-light) 0%, rgba(22, 163, 74, 0.05) 100%);
}

.hero-content {
  max-width: 1560px;
  margin: 0 auto;
  padding: 5% 5%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-text h1 {
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.hero-text p {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.68;
}

.hero-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 400px;
}

section {
  margin: 120px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  margin-bottom: 1rem;
}

.section-intro {
  max-width: 900px;
  margin: 0 auto 3rem;
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.68;
}

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

.vegetable-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 1.5rem;
  transition: all 0.28s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.vegetable-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  border-color: var(--primary-accent);
}

.vegetable-card h3 {
  color: var(--primary-accent);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.vegetable-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.data-block {
  background-color: var(--primary-light);
  padding: 1rem;
  border-radius: 6px;
  margin: 1rem 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.data-row {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(22, 163, 74, 0.1);
}

.data-row:last-child {
  border-bottom: none;
}

.data-label {
  font-weight: 500;
  color: var(--text-dark);
}

.data-value {
  font-weight: 600;
  color: var(--primary-accent);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.comparison-table thead {
  background-color: var(--primary-light);
  color: var(--text-dark);
}

.comparison-table th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  letter-spacing: 0.6px;
  font-size: 0.95rem;
}

.comparison-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.95rem;
}

.comparison-table tbody tr:nth-child(odd) {
  background-color: #fafafa;
}

.comparison-table tbody tr:nth-child(even) {
  background-color: rgba(240, 249, 244, 0.3);
}

.faq-section {
  max-width: 900px;
  margin: 3rem auto;
}

.faq-item {
  margin: 1.5rem 0;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  padding: 1.2rem;
  background-color: var(--primary-light);
  cursor: pointer;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.28s ease;
}

.faq-question:hover {
  background-color: rgba(22, 163, 74, 0.1);
}

.faq-toggle {
  font-size: 1.2rem;
  transition: transform 0.28s ease;
}

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

.faq-answer {
  padding: 1.5rem;
  background-color: #ffffff;
  font-size: 1rem;
  line-height: 1.68;
  color: var(--text-light);
  display: none;
}

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

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin: 3rem 0;
}

.blog-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.28s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  border-color: var(--primary-accent);
}

.blog-card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background-color: var(--primary-light);
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card-content {
  padding: 1.5rem;
}

.blog-card-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--primary-accent);
  margin-bottom: 0.8rem;
  line-height: 1.4;
}

.blog-card-desc {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
}

.blog-card-link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--primary-accent);
  text-decoration: none;
  font-weight: 600;
  transition: gap 0.28s ease;
}

.blog-card-link:hover {
  text-decoration: underline;
}

.cta-section {
  text-align: center;
  padding: 3rem 0;
  background-color: var(--primary-light);
  border-radius: 8px;
  margin: 3rem 0;
}

.cta-section h2 {
  margin-bottom: 1rem;
}

.cta-link {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: var(--primary-accent);
  color: #ffffff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.28s ease;
  margin-top: 1rem;
}

.cta-link:hover {
  background-color: #15803d;
  text-decoration: underline;
}

form {
  max-width: 600px;
  margin: 2rem auto;
  padding: 2rem;
  background-color: var(--primary-light);
  border-radius: 8px;
  border: 1px solid var(--border-light);
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-light);
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
  background-color: #ffffff;
  color: var(--text-dark);
  transition: border-color 0.28s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-accent);
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.1);
}

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

.form-disclaimer {
  font-size: 0.85rem;
  color: var(--text-light);
  margin: 1.5rem 0;
  padding: 1rem;
  background-color: #ffffff;
  border-left: 3px solid var(--secondary-accent);
  border-radius: 4px;
  line-height: 1.6;
}

.form-submit {
  width: 100%;
  padding: 0.75rem 1.5rem;
  background-color: var(--primary-accent);
  color: #ffffff;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.28s ease;
}

.form-submit:hover {
  background-color: #15803d;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.3);
}

footer {
  background-color: var(--text-dark);
  color: #ffffff;
  padding: 3rem 5%;
  margin-top: 6rem;
  font-size: 0.9rem;
  line-height: 1.8;
}

.footer-container {
  max-width: 1560px;
  margin: 0 auto;
}

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

.footer-section h3 {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.footer-section p {
  color: #d1d5db;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.28s ease;
}

.footer-links a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  margin-top: 2rem;
  color: #9ca3af;
  text-align: center;
  font-size: 0.85rem;
}

.disclaimer-banner {
  background-color: var(--primary-light);
  border: 1px solid var(--border-light);
  padding: 1.5rem;
  border-radius: 8px;
  margin: 2rem 0;
  color: var(--text-dark);
  font-size: 0.95rem;
  line-height: 1.6;
}

.compliance-box {
  background-color: rgba(59, 130, 246, 0.05);
  border-left: 4px solid var(--tertiary-accent);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 4px;
  color: var(--text-dark);
  font-size: 0.95rem;
  line-height: 1.7;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--text-dark);
  color: #ffffff;
  padding: 1.5rem 5%;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
  z-index: 999;
  display: none;
  max-height: 200px;
  overflow-y: auto;
}

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

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

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

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

.cookie-btn {
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.28s ease;
  white-space: nowrap;
}

.cookie-accept {
  background-color: var(--primary-accent);
  color: #ffffff;
}

.cookie-accept:hover {
  background-color: #15803d;
}

.cookie-decline {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
}

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

.cookie-policy-link {
  background-color: transparent;
  color: var(--tertiary-accent);
  border: 1px solid var(--tertiary-accent);
}

.cookie-policy-link:hover {
  background-color: rgba(59, 130, 246, 0.1);
}

.thank-you-container {
  text-align: center;
  padding: 4rem 2rem;
  max-width: 600px;
  margin: 4rem auto;
}

.thank-you-container h1 {
  color: var(--primary-accent);
  margin-bottom: 1.5rem;
}

.thank-you-container p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.68;
}

.back-link {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: var(--primary-accent);
  color: #ffffff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.28s ease;
}

.back-link:hover {
  background-color: #15803d;
  transform: translateY(-2px);
}

.about-intro {
  max-width: 900px;
  margin: 2rem auto;
  font-size: 1.1rem;
  line-height: 1.68;
  color: var(--text-dark);
}

.policy-content {
  max-width: 900px;
  margin: 2rem auto;
  line-height: 1.7;
}

.policy-content p {
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.policy-content h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--primary-accent);
}

.policy-content li {
  margin-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

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

  h2 {
    font-size: 1.4rem;
  }

  h3 {
    font-size: 1.1rem;
  }

  p {
    font-size: 1rem;
  }

  .header-container {
    height: 60px;
  }

  .nav-links {
    gap: 1.5rem;
    font-size: 0.85rem;
  }

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

  .vegetable-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
  }

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

  .cookie-content {
    gap: 1rem;
  }

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

  .cookie-btn {
    width: 100%;
  }

  .comparison-table {
    font-size: 0.85rem;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 0.75rem 0.5rem;
  }

  section {
    margin: 80px 0;
  }

  footer {
    padding: 2rem 5%;
  }
}

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

  h2 {
    font-size: 1.2rem;
  }

  .header-container {
    flex-direction: column;
    height: auto;
    padding: 1rem 0;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
  }

  p {
    font-size: 0.95rem;
  }

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

  .form-group input,
  .form-group textarea {
    font-size: 16px;
  }

  section {
    margin: 60px 0;
  }

  main {
    padding: 0 3%;
  }

  .hero-content {
    padding: 3% 5%;
  }
}
