:root {
  --color-olive: #6B8E23;
  --color-linen: #FAF3E0;
  --color-sienna: #A0522D;
  --color-charcoal: #2F4F4F;
  --color-white: #FFFFFF;
  --color-light-gray: #F5F5F5;
}

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

html, body {
  height: 100%;
}

body {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 18px;
  line-height: 1.68;
  color: var(--color-charcoal);
  background-color: var(--color-white);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Rockwell', 'Courier New', serif;
  color: var(--color-charcoal);
  margin-bottom: 1rem;
  font-weight: bold;
}

h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.5rem;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.75rem;
  line-height: 1.4;
  margin-bottom: 1rem;
  color: var(--color-olive);
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-linen);
  box-shadow: 0 2px 4px rgba(0,0,0,0.08);
}

nav {
  max-width: 100%;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: 'Rockwell', 'Courier New', serif;
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--color-olive);
  text-decoration: none;
  letter-spacing: 0.05em;
}

.logo:hover {
  color: var(--color-sienna);
}

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

.nav-links a {
  text-decoration: none;
  color: var(--color-charcoal);
  font-weight: 500;
  transition: color 0.3s ease;
}

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

.hero {
  position: relative;
  background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), url('images/hero-vegetables.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-white);
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(0,0,0,0.4) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 3rem;
}

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

.hero p {
  font-size: 1.3rem;
  color: var(--color-linen);
  text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
}

main {
  min-height: calc(100vh - 200px);
}

section {
  padding: 6rem 2rem;
  margin: 0 auto;
}

.section-full-width {
  padding: 6rem 5rem;
  margin: 0;
}

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

.section-alt {
  background-color: var(--color-linen);
  background-image: 
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 2px,
      rgba(107, 142, 35, 0.03) 2px,
      rgba(107, 142, 35, 0.03) 4px
    );
}

.section-content {
  max-width: 1000px;
  margin: 0 auto;
}

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

.grid-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
}

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

.card {
  background-color: var(--color-white);
  border: 1px solid var(--color-linen);
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card-icon {
  width: 60px;
  height: 60px;
  background-color: var(--color-olive);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--color-white);
  font-size: 1.5rem;
}

.card h3 {
  margin-bottom: 0.5rem;
}

.card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #666;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

.image-block {
  margin: 3rem 0;
  text-align: center;
}

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

.button-primary {
  display: inline-block;
  background-color: var(--color-olive);
  color: var(--color-white);
  padding: 0.9rem 2rem;
  text-decoration: none;
  font-family: 'Rockwell', 'Courier New', serif;
  font-weight: bold;
  letter-spacing: 0.15em;
  font-size: 0.9rem;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 0 var(--color-sienna);
}

.button-primary:hover {
  background-color: var(--color-sienna);
  box-shadow: 0 2px 0 var(--color-charcoal);
  transform: translateY(2px);
}

.button-primary:active {
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.2);
  transform: translateY(4px);
}

footer {
  background-color: var(--color-charcoal);
  color: var(--color-linen);
  padding: 4rem 2rem 2rem;
  margin-top: 6rem;
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(250, 243, 224, 0.2);
}

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

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

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

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

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

.footer-contact {
  margin-bottom: 1rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-bottom {
  text-align: center;
  font-size: 0.9rem;
  color: rgba(250, 243, 224, 0.7);
  padding-top: 2rem;
}

.education-banner {
  background-color: var(--color-olive);
  color: var(--color-white);
  padding: 1.5rem;
  text-align: center;
  font-weight: 500;
  font-size: 1rem;
  margin-bottom: 2rem;
}

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

.faq-item {
  margin-bottom: 2rem;
  border: 1px solid var(--color-linen);
  border-radius: 4px;
}

.faq-question {
  background-color: var(--color-linen);
  padding: 1.5rem;
  cursor: pointer;
  font-weight: bold;
  color: var(--color-charcoal);
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  transition: background-color 0.3s ease;
}

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

.faq-toggle {
  display: inline-block;
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 20px;
  transition: transform 0.3s ease;
}

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

.faq-answer {
  padding: 1.5rem;
  background-color: var(--color-white);
  display: none;
  line-height: 1.7;
}

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

form {
  max-width: 600px;
  margin: 2rem auto;
  padding: 2rem;
  background-color: var(--color-linen);
  border-radius: 4px;
}

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

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--color-charcoal);
}

input[type="email"],
textarea {
  width: 100%;
  padding: 0.9rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}

input[type="email"]:focus,
textarea:focus {
  outline: none;
  border-color: var(--color-olive);
  box-shadow: 0 0 0 3px rgba(107, 142, 35, 0.1);
}

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

.form-disclaimer {
  background-color: var(--color-white);
  padding: 1rem;
  border-left: 4px solid var(--color-sienna);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  color: #555;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--color-charcoal);
  color: var(--color-linen);
  padding: 2rem;
  z-index: 999;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
  display: none;
}

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

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

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

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

.cookie-btn {
  padding: 0.7rem 1.5rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
  font-family: 'Source Sans Pro', sans-serif;
  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-decline {
  background-color: transparent;
  color: var(--color-linen);
  border: 1px solid var(--color-linen);
}

.cookie-decline:hover {
  border-color: var(--color-olive);
  color: var(--color-olive);
}

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

.cookie-learn:hover {
  border-color: var(--color-olive);
  color: var(--color-olive);
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.blog-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-linen);
  overflow: hidden;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(107, 142, 35, 0.2);
}

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

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

.blog-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  color: var(--color-charcoal);
}

.blog-card p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.read-more {
  display: inline-block;
  color: var(--color-olive);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.read-more:hover {
  color: var(--color-sienna);
}

.article-content {
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.8;
}

.article-header {
  margin-bottom: 3rem;
  text-align: center;
}

.article-header h1 {
  margin-bottom: 1rem;
}

.article-meta {
  color: #999;
  font-size: 0.95rem;
}

.article-image {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  margin: 2rem 0;
  border-radius: 4px;
}

.article-body {
  font-size: 1.1rem;
  line-height: 1.8;
}

.article-body p {
  margin-bottom: 1.5rem;
}

.article-body h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

.article-body h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.8rem;
}

.disclaimer {
  background-color: #FFFACD;
  border: 2px solid var(--color-sienna);
  padding: 2rem;
  border-radius: 4px;
  margin: 2rem 0;
  font-size: 0.95rem;
  line-height: 1.7;
}

.disclaimer h3 {
  color: var(--color-sienna);
  margin-bottom: 0.5rem;
}

.breadcrumb {
  max-width: 1200px;
  margin: 2rem auto 0;
  padding: 0 2rem;
  font-size: 0.9rem;
}

.breadcrumb a {
  color: var(--color-olive);
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

@media (max-width: 992px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }

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

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

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

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

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.5rem;
  }

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

  section {
    padding: 4rem 1.5rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    gap: 1rem;
    flex-wrap: wrap;
  }

  .hero {
    min-height: 400px;
  }

  .hero-content {
    padding: 2rem;
  }

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

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

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

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

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

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

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-buttons {
    justify-content: center;
  }

  .section-full-width {
    padding: 4rem 1.5rem;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  section {
    padding: 3rem 1rem;
  }
}

@media (max-width: 480px) {
  nav {
    flex-direction: column;
    gap: 1rem;
  }

  .logo {
    font-size: 1.4rem;
  }

  .nav-links {
    gap: 0.5rem;
  }

  .nav-links a {
    font-size: 0.9rem;
  }

  body {
    font-size: 16px;
  }

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

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

  .container {
    padding: 0 1rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.3rem;
  }

  h3 {
    font-size: 1.1rem;
  }

  .card {
    padding: 1.5rem;
  }

  .button-primary {
    padding: 0.8rem 1.5rem;
    font-size: 0.85rem;
  }

  .article-body {
    font-size: 1rem;
  }
}
