@import url('https://fonts.googleapis.com/css2?family=Karla:wght@400;700;800&family=Nunito:wght@400;700;900&display=swap');

:root {
  --color-primary: #2E7D32;
  --color-accent-yellow: #FFF59D;
  --color-accent-brown: #6D4C41;
  --color-accent-blue: #81D4FA;
  --color-white: #FFFFFF;
  --color-gray-light: #F5F5F5;
  --color-gray-medium: #E0E0E0;
  --color-gray-dark: #333333;
  --color-black: #000000;
  --spacing-large: 120px;
  --spacing-medium: 60px;
  --spacing-small: 30px;
}

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

html, body {
  font-family: 'Karla', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-gray-dark);
  background-color: var(--color-white);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 30px;
  color: var(--color-gray-dark);
}

h1 {
  font-size: 50px;
  font-weight: 900;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
}

h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 35px;
}

h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 25px;
}

p {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.8;
}

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

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

button, .btn {
  display: inline-block;
  padding: 12px 28px;
  border: 2px solid var(--color-primary);
  background-color: var(--color-white);
  color: var(--color-primary);
  font-family: 'Karla', sans-serif;
  font-size: 16px;
  font-weight: 700;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

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

button.btn-secondary {
  border-color: var(--color-accent-brown);
  color: var(--color-accent-brown);
}

button.btn-secondary:hover {
  background-color: var(--color-accent-brown);
  color: var(--color-white);
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--color-gray-medium);
  z-index: 1000;
  transition: box-shadow 0.3s ease;
  padding: 15px 0;
}

header.scrolled {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.logo {
  font-family: 'Nunito', sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

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

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

nav ul li a {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-gray-dark);
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: var(--color-primary);
  text-decoration: none;
}

.hero {
  height: 100vh;
  background: linear-gradient(rgba(46, 125, 50, 0.4), rgba(46, 125, 50, 0.4)), url('images/hero-organic-field.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-white);
  padding: 80px 40px 40px;
}

.hero-content h1 {
  font-size: 50px;
  color: var(--color-white);
  text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.3);
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 20px;
  color: var(--color-accent-yellow);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  margin-bottom: 40px;
}

.section {
  padding: var(--spacing-large) 40px;
  max-width: 1680px;
  margin: 0 auto;
}

.section-container {
  max-width: 1280px;
  margin: 0 auto;
}

.section-dark {
  background-color: var(--color-gray-light);
}

.section-with-image {
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 60px;
  align-items: center;
}

.section-with-image.reverse {
  grid-template-columns: 55% 45%;
}

.section-with-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  animation: fadeInUp 0.8s ease;
}

.section-with-image-content {
  animation: fadeInUp 0.8s ease;
}

.section-with-image-content h2 {
  color: var(--color-primary);
  margin-bottom: 30px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin: 60px 0;
}

.card {
  background-color: var(--color-white);
  border: 1px solid var(--color-gray-medium);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.card-img {
  width: 100%;
  height: 250px;
  overflow: hidden;
  position: relative;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.card:hover .card-img img {
  transform: scale(1.05);
}

.card-body {
  padding: 30px;
}

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

.card-body p {
  font-size: 15px;
  color: var(--color-gray-dark);
  line-height: 1.6;
}

.card-footer {
  padding: 0 30px 30px;
}

.card-footer a {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-primary);
  transition: color 0.3s ease;
}

.card-footer a:hover {
  color: var(--color-accent-brown);
}

.table-responsive {
  overflow-x: auto;
  margin: 40px 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  background-color: var(--color-white);
}

th {
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 15px;
  text-align: left;
  font-weight: 700;
}

td {
  padding: 15px;
  border-bottom: 1px solid var(--color-gray-medium);
}

tr:hover {
  background-color: var(--color-gray-light);
}

.faq-item {
  margin-bottom: 20px;
  border-left: 4px solid var(--color-primary);
  padding-left: 20px;
}

.faq-question {
  font-weight: 700;
  color: var(--color-primary);
  cursor: pointer;
  font-size: 16px;
  margin-bottom: 10px;
  user-select: none;
}

.faq-answer {
  display: none;
  color: var(--color-gray-dark);
  font-size: 15px;
  line-height: 1.8;
}

.faq-answer.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

footer {
  background-color: var(--color-gray-dark);
  color: var(--color-white);
  padding: var(--spacing-medium) 40px;
  margin-top: var(--spacing-large);
}

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

footer h4 {
  font-size: 16px;
  margin-bottom: 20px;
  color: var(--color-accent-yellow);
}

footer ul {
  list-style: none;
}

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

footer a {
  color: var(--color-white);
  font-size: 14px;
  transition: color 0.3s ease;
}

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

footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 30px;
  text-align: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

footer .working-hours {
  font-size: 14px;
  color: var(--color-white);
}

.disclaimer-box {
  background-color: var(--color-accent-yellow);
  padding: 25px;
  border-left: 4px solid var(--color-accent-brown);
  margin: 40px 0;
  border-radius: 4px;
  color: var(--color-gray-dark);
  font-size: 14px;
  line-height: 1.8;
}

.disclaimer-box strong {
  font-weight: 700;
  color: var(--color-primary);
}

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

label {
  display: block;
  margin-bottom: 10px;
  font-weight: 700;
  color: var(--color-primary);
  font-size: 15px;
}

input[type="email"],
input[type="text"],
textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid var(--color-gray-medium);
  border-radius: 4px;
  font-family: 'Karla', sans-serif;
  font-size: 15px;
  transition: border-color 0.3s ease;
}

input[type="email"]:focus,
input[type="text"]: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;
}

.form-submit {
  width: 100%;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(51, 51, 51, 0.98);
  color: var(--color-white);
  padding: 25px 40px;
  z-index: 999;
  display: none;
  font-size: 14px;
  line-height: 1.6;
}

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

.cookie-banner-content {
  flex: 1;
}

.cookie-banner-buttons {
  display: flex;
  gap: 15px;
  flex-shrink: 0;
}

.cookie-banner button {
  padding: 10px 20px;
  font-size: 14px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 700;
  transition: all 0.3s ease;
}

.cookie-accept {
  background-color: var(--color-primary);
  color: var(--color-white);
  border: none;
}

.cookie-accept:hover {
  background-color: #1B5E20;
}

.cookie-reject {
  background-color: transparent;
  color: var(--color-white);
  border: 2px solid var(--color-white);
}

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

.cookie-more {
  background-color: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
  padding: 8px 16px;
}

.cookie-more:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
}

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

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .section {
    padding: var(--spacing-medium) 20px;
  }

  nav ul {
    flex-direction: column;
    gap: 15px;
  }

  .navbar {
    flex-direction: column;
    gap: 20px;
    padding: 0 20px;
  }

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

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

  .section-with-image {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .section-with-image.reverse {
    grid-template-columns: 1fr;
  }

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

  footer .section-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

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

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

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 20px;
  }
}
