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

:root {
  --primary-color: #2E7D32;
  --text-dark: #2C3E50;
  --text-light: #5A6C7D;
  --bg-white: #FFFFFF;
  --bg-light: #F8F9FA;
  --border-light: #E8EBF0;
  --shadow-soft: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-medium: 0 4px 12px rgba(0, 0, 0, 0.1);
  --border-radius: 6px;
}

html, body {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-white);
}

body {
  padding-top: 70px;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--bg-white);
  box-shadow: var(--shadow-soft);
  z-index: 1000;
  height: 70px;
  display: flex;
  align-items: center;
}

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

.logo {
  font-family: 'Roboto Slab', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
  cursor: pointer;
}

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

nav ul {
  list-style: none;
  display: flex;
  gap: 32px;
}

nav a {
  font-size: 14px;
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

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

main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

section {
  padding: 64px 0;
  border-bottom: 1px solid var(--border-light);
}

section:last-of-type {
  border-bottom: none;
}

h1 {
  font-family: 'Roboto Slab', serif;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.3;
}

h2 {
  font-family: 'Roboto Slab', serif;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-dark);
  line-height: 1.3;
}

h3 {
  font-family: 'Roboto Slab', serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-dark);
}

p {
  margin-bottom: 16px;
  color: var(--text-light);
  line-height: 1.8;
}

.hero-section {
  padding: 0;
  margin-top: -70px;
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(46, 125, 50, 0.1) 0%, rgba(255, 255, 255, 0.95) 100%);
  border-bottom: 1px solid var(--border-light);
}

.hero-section img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--text-dark);
}

.hero-content h1 {
  margin-bottom: 16px;
  font-size: 42px;
}

.hero-content p {
  font-size: 18px;
  color: var(--text-light);
  max-width: 500px;
}

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

.two-column-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-soft);
  object-fit: cover;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 32px;
}

.product-card {
  background-color: var(--bg-light);
  padding: 24px;
  border-radius: var(--border-radius);
  border: 1px solid var(--border-light);
  text-align: center;
  transition: all 0.3s ease;
}

.product-card:hover {
  box-shadow: var(--shadow-medium);
  border-color: var(--primary-color);
}

.product-card img {
  width: 100%;
  max-width: 200px;
  height: auto;
  margin-bottom: 16px;
  border-radius: var(--border-radius);
}

.product-card h3 {
  margin-bottom: 12px;
}

.product-card p {
  font-size: 14px;
  margin-bottom: 0;
}

.faq-item {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-light);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-dark);
}

.faq-answer {
  margin-top: 12px;
  color: var(--text-light);
  display: none;
  line-height: 1.8;
}

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

.cta-button {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--bg-white);
  padding: 12px 28px;
  text-decoration: none;
  border-radius: var(--border-radius);
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  border: 2px solid var(--primary-color);
  cursor: pointer;
}

.cta-button:hover {
  background-color: transparent;
  color: var(--primary-color);
}

.disclaimer-box {
  background-color: #f0f7f0;
  border-left: 4px solid var(--primary-color);
  padding: 16px;
  margin: 32px 0;
  border-radius: var(--border-radius);
  font-size: 14px;
  color: var(--text-dark);
  line-height: 1.6;
}

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

label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--text-dark);
}

input[type="email"],
textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius);
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  color: var(--text-dark);
  transition: border-color 0.3s ease;
}

input[type="email"]:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

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

.form-container {
  max-width: 600px;
  margin: 32px 0;
}

footer {
  background-color: var(--text-dark);
  color: var(--bg-white);
  padding: 48px 32px;
  margin-top: 64px;
}

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

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 48px;
}

.footer-section h4 {
  font-family: 'Roboto Slab', serif;
  font-size: 16px;
  margin-bottom: 16px;
  color: var(--bg-white);
}

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

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

.footer-section a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

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

.contact-info {
  font-size: 14px;
  line-height: 1.8;
}

.contact-info p {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--text-dark);
  color: var(--bg-white);
  padding: 20px 32px;
  z-index: 2000;
  display: none;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.15);
}

.cookie-banner.show {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.cookie-banner p {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  flex: 1;
}

.cookie-banner button {
  background-color: var(--primary-color);
  color: var(--bg-white);
  border: none;
  padding: 10px 20px;
  border-radius: var(--border-radius);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.cookie-banner button:hover {
  opacity: 0.9;
}

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

.modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background-color: var(--bg-white);
  padding: 40px;
  border-radius: var(--border-radius);
  max-width: 800px;
  max-height: 80vh;
  overflow-y: auto;
}

.modal-close {
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  color: var(--text-light);
}

.modal-close:hover {
  color: var(--text-dark);
}

@media (max-width: 768px) {
  body {
    padding-top: 60px;
  }

  header {
    height: 60px;
  }

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

  nav ul {
    gap: 16px;
  }

  nav a {
    font-size: 13px;
  }

  main {
    padding: 0 16px;
  }

  section {
    padding: 40px 0;
  }

  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 22px;
  }

  .hero-section {
    height: 300px;
  }

  .hero-content h1 {
    font-size: 28px;
  }

  .hero-content p {
    font-size: 16px;
  }

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

  .products-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

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

  .cookie-banner.show {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .cookie-banner p {
    margin-bottom: 0;
  }

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

  .modal-content {
    padding: 24px;
    margin: 16px;
  }
}
