:root {
  --primary-color: #2E8B57;
  --primary-dark: #246d44;
  --text-dark: #333333;
  --text-light: #666666;
  --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;
  color: var(--text-dark);
  line-height: 1.6;
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

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

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

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

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

.header .navbar-brand img {
  height: 40px;
  margin-right: 10px;
}

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

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

main {
  margin-top: 70px;
  min-height: calc(100vh - 70px);
}

.hero-section {
  background: linear-gradient(135deg, rgba(46, 139, 87, 0.1) 0%, rgba(46, 139, 87, 0.05) 100%);
  padding: 80px 0;
}

.hero-section h1 {
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.hero-section p {
  font-size: 1.1rem;
  color: var(--text-light);
}

.hero-section img {
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  max-width: 100%;
  height: auto;
}

.content-section {
  padding: 60px 0;
}

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

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

.content-section h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.content-section img {
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  max-width: 100%;
  height: auto;
  margin: 20px 0;
}

.content-section .img-left {
  float: left;
  margin: 0 30px 20px 0;
  max-width: 45%;
}

.content-section .img-right {
  float: right;
  margin: 0 0 20px 30px;
  max-width: 45%;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 12px 30px;
  font-weight: 500;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(46, 139, 87, 0.3);
}

.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 12px 30px;
  font-weight: 500;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  transform: translateY(-2px);
}

.disclaimer-box {
  background: #fff3cd;
  border-left: 4px solid #ffc107;
  padding: 20px;
  margin: 40px 0;
  border-radius: 4px;
}

.disclaimer-box h3 {
  color: #856404;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.disclaimer-box p {
  color: #856404;
  margin-bottom: 0.5rem;
}

.product-card {
  background: var(--white);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 30px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

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

.product-card h3 {
  color: var(--text-dark);
  margin-bottom: 10px;
}

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

.footer {
  background: var(--text-dark);
  color: var(--white);
  padding: 40px 0 20px;
  margin-top: 60px;
}

.footer h5 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.footer a {
  color: #cccccc;
  display: block;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

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

.footer-info {
  color: #cccccc;
  font-size: 0.9rem;
}

.footer-bottom {
  border-top: 1px solid #555;
  margin-top: 30px;
  padding-top: 20px;
  text-align: center;
  color: #999;
  font-size: 0.9rem;
}

.contact-form {
  background: var(--white);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.contact-form .form-control {
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  transition: border-color 0.3s ease;
}

.contact-form .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(46, 139, 87, 0.25);
}

.contact-info {
  background: var(--bg-light);
  padding: 30px;
  border-radius: 8px;
}

.contact-info h3 {
  color: var(--primary-color);
  margin-bottom: 20px;
}

.contact-info p {
  margin-bottom: 10px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--text-dark);
  color: var(--white);
  padding: 20px;
  z-index: 9999;
  display: none;
}

.cookie-banner.show {
  display: block;
}

.cookie-banner p {
  margin: 0;
  font-size: 0.9rem;
}

.cookie-banner .btn {
  margin-left: 10px;
}

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

  h2 {
    font-size: 1.5rem;
  }

  .hero-section {
    padding: 60px 0;
  }

  .content-section {
    padding: 40px 0;
  }

  .content-section .img-left,
  .content-section .img-right {
    float: none;
    margin: 20px 0;
    max-width: 100%;
  }

  .cookie-banner {
    text-align: center;
  }

  .cookie-banner .btn {
    margin: 10px 5px 0;
  }
}
