:root {
  --primary-color: #2d5016;
  --primary-dark: #1f3a10;
  --primary-light: #3d6b20;
  --secondary-color: #4a7c2c;
  --text-dark: #2c3e50;
  --text-light: #6c757d;
  --bg-light: #f8f9fa;
  --white: #ffffff;
}

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

.navbar-brand {
  font-size: 1.5rem;
  color: var(--primary-color) !important;
}

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

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

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  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(0, 0, 0, 0.15);
}

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

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

.bg-primary {
  background-color: var(--primary-color) !important;
}

.text-primary {
  color: var(--primary-color) !important;
}

.hero-section {
  position: relative;
  min-height: 500px;
}

.hero-image {
  background-size: cover;
  background-position: center;
  min-height: 500px;
  position: relative;
}

.hero-overlay {
  background: rgba(45, 80, 22, 0.7);
  min-height: 500px;
  display: flex;
  align-items: center;
}

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

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

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

.shadow {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

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

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

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

.content-text h2 {
  color: var(--primary-color);
  margin-top: 2rem;
}

.content-text h3 {
  color: var(--primary-dark);
}

.content-text a {
  color: var(--primary-color);
}

.content-text a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

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

.contact-info a {
  color: var(--primary-color);
  text-decoration: none;
}

.contact-info a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

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

  .display-4 {
    font-size: 2rem;
  }

  .lead {
    font-size: 1rem;
  }

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