:root {
  --forest-green: #228B22;
  --forest-green-dark: #1B6B1B;
  --forest-green-light: #2FA52F;
  --text-dark: #2C3E50;
  --text-gray: #6C757D;
  --bg-light: #F8F9FA;
  --white: #FFFFFF;
}

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

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

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

.navbar {
  padding: 1rem 0;
}

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

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

.navbar-nav .nav-link {
  color: var(--text-dark);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

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

main {
  margin-top: 76px;
}

.hero-section {
  background-color: var(--bg-light);
  padding: 4rem 0;
  text-align: center;
}

.hero-section h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--forest-green);
  margin-bottom: 1rem;
}

.hero-section p {
  font-size: 1.1rem;
  color: var(--text-gray);
  max-width: 800px;
  margin: 0 auto 2rem;
}

.hero-image {
  width: 100%;
  max-width: 1200px;
  height: auto;
  margin: 2rem auto 0;
  display: block;
  border-radius: 8px;
}

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

.content-section:nth-child(even) {
  background-color: var(--bg-light);
}

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

.content-section h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
  margin-top: 1.5rem;
}

.content-section p {
  font-size: 1rem;
  color: var(--text-gray);
  margin-bottom: 1rem;
  line-height: 1.8;
}

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

.content-section li {
  font-size: 1rem;
  color: var(--text-gray);
  margin-bottom: 0.5rem;
  line-height: 1.8;
}

.content-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 8px;
  margin: 1rem 0;
}

.image-left {
  float: left;
  margin-right: 2rem;
  margin-bottom: 1rem;
}

.image-right {
  float: right;
  margin-left: 2rem;
  margin-bottom: 1rem;
}

.disclaimer-box {
  background-color: #FFF9E6;
  border-left: 4px solid var(--forest-green);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 4px;
}

.disclaimer-box h3 {
  color: var(--forest-green);
  margin-top: 0;
}

.btn-primary {
  background-color: var(--forest-green);
  border-color: var(--forest-green);
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

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

.product-card {
  background-color: var(--white);
  border: 1px solid #DEE2E6;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  transition: box-shadow 0.3s ease;
}

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

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

.product-card h3 {
  font-size: 1.3rem;
  color: var(--forest-green);
  margin-bottom: 0.5rem;
}

.product-card p {
  color: var(--text-gray);
  margin-bottom: 1rem;
}

footer {
  background-color: var(--text-dark);
  color: var(--white);
  padding: 3rem 0 1rem;
}

footer h5 {
  color: var(--forest-green-light);
  font-weight: 600;
  margin-bottom: 1rem;
}

footer p,
footer a {
  color: #B8C5D6;
  font-size: 0.9rem;
  line-height: 1.8;
}

footer a {
  text-decoration: none;
  transition: color 0.3s ease;
}

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

footer ul {
  list-style: none;
  padding: 0;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 2rem;
  padding-top: 1.5rem;
  text-align: center;
}

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

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

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

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #CED4DA;
  border-radius: 4px;
  font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--forest-green);
  box-shadow: 0 0 0 0.2rem rgba(34,139,34,0.25);
}

#cookieConsent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--text-dark);
  color: var(--white);
  padding: 1.5rem;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

#cookieConsent p {
  margin-bottom: 1rem;
  color: var(--white);
}

#cookieConsent button {
  margin-right: 1rem;
}

.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2rem;
  }
  
  .content-section h2 {
    font-size: 1.75rem;
  }
  
  .image-left,
  .image-right {
    float: none;
    margin: 1rem auto;
    display: block;
  }
  
  .product-card img {
    height: 200px;
  }
}

@media (max-width: 576px) {
  .hero-section h1 {
    font-size: 1.75rem;
  }
  
  .content-section h2 {
    font-size: 1.5rem;
  }
  
  #cookieConsent {
    padding: 1rem;
  }
  
  #cookieConsent button {
    width: 100%;
    margin-bottom: 0.5rem;
  }
}
