:root {
  --primary-green: #2d5016;
  --accent-green: #4a7c2c;
  --light-green: #f0f5eb;
  --dark-gray: #2c2c2c;
  --medium-gray: #666666;
  --light-gray: #f8f9fa;
  --white: #ffffff;
}

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

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

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

.nav-link {
  font-weight: 500;
  color: var(--dark-gray);
  transition: color 0.3s ease;
}

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

.btn-success {
  background-color: var(--primary-green);
  border-color: var(--primary-green);
  transition: all 0.3s ease;
}

.btn-success:hover {
  background-color: var(--accent-green);
  border-color: var(--accent-green);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-outline-success {
  color: var(--primary-green);
  border-color: var(--primary-green);
}

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

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

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e0e0e0;
}

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

.product-card img {
  height: 250px;
  object-fit: cover;
}

.bg-success {
  background-color: var(--primary-green);
}

.text-success {
  color: var(--primary-green);
}

.custom-list {
  list-style: none;
  padding-left: 0;
}

.custom-list li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.5rem;
}

.custom-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-green);
  font-weight: bold;
}

.testimonial-card {
  border-left: 4px solid var(--primary-green);
}

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

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

.cookie-banner a {
  color: var(--primary-green);
  text-decoration: underline;
}

.page-header {
  background: linear-gradient(135deg, var(--light-green) 0%, var(--white) 100%);
}

.policy-content h2 {
  color: var(--primary-green);
}

.policy-content h4 {
  color: var(--accent-green);
}

footer a {
  transition: opacity 0.3s ease;
}

footer a:hover {
  opacity: 0.8;
  text-decoration: none;
}

.cta-section {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--accent-green) 100%);
}

.value-card,
.feature-box,
.audience-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover,
.feature-box:hover,
.audience-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.disclaimer-box {
  border-left: 4px solid var(--accent-green);
}

.info-badge {
  border-left: 4px solid var(--primary-green);
}

@media (max-width: 768px) {
  .hero-section {
    height: 400px;
  }

  .hero-overlay h1 {
    font-size: 2rem;
  }

  .product-card img {
    height: 200px;
  }
}
