:root {
  --primary-green: #2d5016;
  --dark-green: #1a3009;
  --light-green: #4a7c2c;
  --accent-green: #6b9c4a;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --text-dark: #212529;
  --text-muted: #6c757d;
  --border-color: #dee2e6;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
}

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

.navbar-brand {
  font-size: 1.5rem;
  color: var(--primary-green);
  font-weight: 700;
}

.navbar-brand:hover {
  color: var(--dark-green);
}

.nav-link {
  color: var(--text-dark);
  font-weight: 500;
  margin-left: 1rem;
}

.nav-link:hover {
  color: var(--primary-green);
}

.hero-section {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(29, 48, 9, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-white);
  text-align: center;
  padding: 2rem;
}

.hero-overlay h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-overlay .lead {
  font-size: 1.25rem;
  max-width: 800px;
  margin: 0 auto;
}

.content-section {
  padding: 5rem 0;
}

.content-section h2 {
  color: var(--primary-green);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

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

.content-section img {
  margin-bottom: 1.5rem;
}

.bg-light {
  background-color: var(--bg-light);
}

.products-section {
  padding: 5rem 0;
  background-color: var(--bg-white);
}

.products-section h2 {
  color: var(--primary-green);
  font-weight: 700;
}

.product-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  height: 100%;
  transition: box-shadow 0.3s ease;
}

.product-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.product-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.product-card h3 {
  color: var(--primary-green);
  font-size: 1.25rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.product-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.faq-section {
  padding: 5rem 0;
}

.faq-section h2 {
  color: var(--primary-green);
  font-weight: 700;
}

.faq-item {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 1.5rem;
}

.faq-item h3 {
  color: var(--primary-green);
  font-size: 1.25rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.faq-item p {
  color: var(--text-dark);
  margin-bottom: 0;
}

.cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--primary-green), var(--light-green));
  color: var(--bg-white);
}

.cta-section h2 {
  color: var(--bg-white);
  margin-bottom: 1rem;
}

.cta-section p {
  color: var(--bg-white);
  margin-bottom: 2rem;
}

.btn-primary {
  background-color: var(--primary-green);
  border-color: var(--primary-green);
  padding: 0.75rem 2rem;
  font-weight: 600;
}

.btn-primary:hover {
  background-color: var(--dark-green);
  border-color: var(--dark-green);
}

.btn-secondary {
  background-color: var(--text-muted);
  border-color: var(--text-muted);
}

.btn-secondary:hover {
  background-color: #5a6268;
  border-color: #5a6268;
}

.page-header {
  background: linear-gradient(135deg, var(--primary-green), var(--light-green));
  color: var(--bg-white);
  padding: 4rem 0;
  text-align: center;
}

.page-header h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.page-header .lead {
  font-size: 1.25rem;
}

.contact-info p {
  margin-bottom: 0.5rem;
}

.contact-form {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: 8px;
}

.contact-form .form-control {
  border: 1px solid var(--border-color);
  padding: 0.75rem;
}

.contact-form .form-control:focus {
  border-color: var(--primary-green);
  box-shadow: 0 0 0 0.2rem rgba(45, 80, 22, 0.25);
}

.thank-you-section {
  padding: 10rem 0;
  text-align: center;
}

.thank-you-section h1 {
  color: var(--primary-green);
  margin-bottom: 2rem;
}

.site-footer {
  background-color: var(--dark-green);
  color: var(--bg-white);
  padding: 4rem 0 2rem;
}

.site-footer h3 {
  color: var(--bg-white);
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.5rem;
}

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--bg-white);
  text-decoration: underline;
}

.copyright {
  color: rgba(255, 255, 255, 0.6);
  margin-top: 2rem;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--bg-white);
  border-top: 2px solid var(--primary-green);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  padding: 1.5rem 0;
  z-index: 9999;
}

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

.cookie-content p {
  flex: 1;
  margin: 0 2rem 0 0;
  color: var(--text-dark);
}

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

.cookie-buttons .btn {
  white-space: nowrap;
}

@media (max-width: 768px) {
  .hero-overlay h1 {
    font-size: 2rem;
  }

  .hero-overlay .lead {
    font-size: 1rem;
  }

  .hero-section {
    height: 400px;
  }

  .content-section {
    padding: 3rem 0;
  }

  .page-header h1 {
    font-size: 2rem;
  }

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

  .cookie-content p {
    margin: 0 0 1rem 0;
  }

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

@media (max-width: 992px) {
  .content-section .col-lg-6.order-lg-2 {
    order: 1;
  }

  .content-section .col-lg-6.order-lg-1 {
    order: 2;
  }
}
