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

:root {
  --primary-color: #006400;
  --light-bg: #f8faf7;
  --text-dark: #2c3e2f;
  --text-light: #5a6b5d;
  --border-color: #e0e4df;
  --white: #ffffff;
}

html, body {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  background-color: var(--light-bg);
}

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

a:hover {
  color: #004d00;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
  margin-top: 2rem;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.5rem;
  margin-top: 1.5rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-light);
}

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

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

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
  transition: opacity 0.25s ease-in;
}

.logo:hover {
  opacity: 0.8;
}

nav {
  display: none;
}

nav.active {
  display: flex;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  flex-direction: column;
  background-color: var(--white);
  border-top: 1px solid var(--border-color);
  padding: 1rem 2rem;
}

nav a {
  padding: 0.5rem 0;
  display: block;
  font-size: 0.95rem;
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background-color: var(--primary-color);
  transition: all 0.25s ease-in;
}

@media (min-width: 768px) {
  nav {
    display: flex !important;
    position: static;
    flex-direction: row;
    background-color: transparent;
    border: none;
    padding: 0;
    gap: 2rem;
  }

  nav a {
    padding: 0;
    font-size: 0.95rem;
  }

  .menu-toggle {
    display: none;
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  h3 {
    font-size: 1.75rem;
  }
}

main {
  margin-top: 80px;
}

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

.section {
  padding: 4rem 2rem;
}

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

.hero {
  background: linear-gradient(135deg, rgba(0, 100, 0, 0.7) 0%, rgba(0, 100, 0, 0.5) 100%), url('images/hero.jpg') center/cover;
  color: var(--white);
  padding: 8rem 2rem;
  text-align: center;
  margin-top: 80px;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1rem;
}

.hero p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.cta-button {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--white);
  padding: 0.75rem 2rem;
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.25s ease-in;
  border: 2px solid var(--primary-color);
  cursor: pointer;
  text-decoration: none;
}

.cta-button:hover {
  background-color: #004d00;
  border-color: #004d00;
  color: var(--white);
}

.cta-button.secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

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

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

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

.image-container {
  border-radius: 10px;
  overflow: hidden;
}

.image-container img {
  width: 100%;
  height: auto;
  display: block;
}

.section-image-left {
  order: 2;
}

.section-image-right {
  order: 1;
}

@media (min-width: 768px) {
  .section-image-left {
    order: 1;
  }

  .section-image-right {
    order: 2;
  }
}

.bullet-list {
  list-style: none;
  padding-left: 2rem;
}

.bullet-list li {
  padding: 0.75rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-light);
}

.bullet-list li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 1rem;
  width: 8px;
  height: 8px;
  background-color: var(--primary-color);
  border-radius: 50%;
}

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

.faq-item {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  margin-bottom: 1rem;
  overflow: hidden;
}

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

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

.faq-toggle {
  display: inline-block;
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 20px;
  color: var(--primary-color);
  font-weight: bold;
  transition: transform 0.25s ease-in;
}

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

.faq-answer {
  display: none;
  padding: 1.5rem;
  border-top: 1px solid var(--border-color);
  color: var(--text-light);
  background-color: var(--white);
}

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

.context-box {
  background-color: #f0f4ed;
  border-left: 4px solid var(--primary-color);
  padding: 2rem;
  margin: 2rem 0;
  border-radius: 4px;
}

.context-box h3 {
  margin-top: 0;
}

.context-box p {
  margin-bottom: 0.5rem;
}

.disclaimer {
  background-color: var(--light-bg);
  padding: 1.5rem;
  border-radius: 10px;
  text-align: center;
  font-weight: 600;
  color: var(--primary-color);
  margin: 2rem 0;
}

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

@media (min-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.product-card {
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.25s ease-in;
  border: 1px solid var(--border-color);
}

.product-card:hover {
  transform: translateY(-5px);
}

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

.product-info {
  padding: 1.5rem;
}

.product-info h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.product-info p {
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

footer {
  background-color: var(--text-dark);
  color: var(--white);
  padding: 3rem 2rem 1rem;
  margin-top: 4rem;
}

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

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

.footer-section h4 {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: 1rem;
}

.footer-section p, .footer-section a {
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
}

.footer-section a {
  display: inline-block;
  cursor: pointer;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.5);
  transition: color 0.25s ease-in;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-disclaimer {
  text-align: center;
  font-size: 0.9rem;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 1rem;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.25s ease-in;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

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

.form-submit {
  width: 100%;
  background-color: var(--primary-color);
  color: var(--white);
  padding: 1rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.25s ease-in;
}

.form-submit:hover {
  background-color: #004d00;
}

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

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

.modal-content {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 10px;
  max-width: 800px;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  width: 95%;
}

.modal-close {
  position: absolute;
  right: 1.5rem;
  top: 1.5rem;
  font-size: 2rem;
  font-weight: bold;
  color: var(--text-light);
  cursor: pointer;
  background: none;
  border: none;
  transition: color 0.25s ease-in;
}

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

.modal h2 {
  margin-top: 0;
}

.modal ol, .modal ul {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.modal li {
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--text-dark);
  color: var(--white);
  padding: 1.5rem;
  z-index: 1500;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-banner.active {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

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

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

.cookie-button {
  padding: 0.5rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease-in;
  white-space: nowrap;
}

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

.cookie-button.accept:hover {
  background-color: #004d00;
}

.cookie-button.decline {
  background-color: transparent;
  color: var(--white);
  border: 1px solid var(--white);
}

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

.success-message {
  display: none;
  position: fixed;
  top: 100px;
  right: 2rem;
  background-color: #28a745;
  color: var(--white);
  padding: 1rem 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 2000;
  animation: slideIn 0.3s ease-in;
}

.success-message.active {
  display: block;
}

@keyframes slideIn {
  from {
    transform: translateX(400px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .cookie-banner.active {
    flex-direction: column;
  }

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

  .cookie-button {
    width: 100%;
  }

  .success-message {
    right: 1rem;
    left: 1rem;
  }

  .header-container {
    padding: 0.75rem 1rem;
  }

  header {
    min-height: 60px;
  }

  main {
    margin-top: 60px;
  }

  .hero {
    padding: 4rem 1rem;
    margin-top: 60px;
  }

  .section {
    padding: 2rem 1rem;
  }
}
