:root {
  --primary-color: #6b8e23;
  --primary-dark: #556b1b;
  --primary-light: #8cae2b;
  --text-dark: #2c2c2c;
  --text-light: #5a5a5a;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --border-color: #e0e0e0;
}

* {
  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;
  background-color: var(--bg-white);
}

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

.cookie-banner.hidden {
  display: none;
}

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

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

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

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

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

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

.hero-section {
  position: relative;
  margin-bottom: 3rem;
}

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

.hero-content {
  background: linear-gradient(135deg, rgba(107, 142, 35, 0.95), rgba(85, 107, 27, 0.95));
  color: white;
  padding: 3rem 0;
  text-align: center;
}

.hero-content h1 {
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-content .lead {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.hero-disclaimer {
  font-size: 0.95rem;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.2);
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  display: inline-block;
  margin-top: 1rem;
}

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

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

.content-section p {
  color: var(--text-light);
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

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

.info-card {
  padding: 1.5rem;
  background: var(--bg-white);
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

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

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

.info-card p {
  font-size: 0.95rem;
  margin-bottom: 0;
}

.info-card img {
  height: 200px;
  object-fit: cover;
}

.limitations-section {
  border-left: 4px solid var(--primary-color);
  background: linear-gradient(to right, rgba(107, 142, 35, 0.05), transparent);
}

.limitations-section h2 {
  color: var(--primary-dark);
}

.cta-section {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white;
  padding: 3rem 0;
  text-align: center;
}

.cta-section h2 {
  color: white;
  margin-bottom: 1rem;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.btn-custom {
  background: var(--bg-white);
  color: var(--primary-color);
  padding: 0.75rem 2rem;
  border-radius: 25px;
  font-weight: 600;
  border: none;
  transition: all 0.3s ease;
}

.btn-custom:hover {
  background: var(--bg-light);
  color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.page-header {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white;
  padding: 3rem 0;
  text-align: center;
  margin-bottom: 3rem;
}

.page-header h1 {
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.page-header .lead {
  font-size: 1.15rem;
  margin-bottom: 0;
}

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

.contact-form .form-control {
  border: 2px solid var(--border-color);
  border-radius: 8px;
  padding: 0.75rem;
  transition: border-color 0.3s ease;
}

.contact-form .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(107, 142, 35, 0.15);
}

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

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

.thank-you-content {
  max-width: 600px;
  margin: 0 auto;
  padding: 3rem 0;
}

.policy-content {
  max-width: 900px;
  margin: 0 auto;
}

.policy-content h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.policy-content ul {
  margin-left: 2rem;
  margin-bottom: 1rem;
}

.policy-content li {
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

.site-footer {
  background: linear-gradient(135deg, var(--text-dark), #1a1a1a);
  color: white;
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

.site-footer h5 {
  color: var(--primary-light);
  font-weight: 700;
  margin-bottom: 1rem;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.site-footer ul {
  padding: 0;
}

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

.site-footer a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.site-footer a:hover {
  color: var(--primary-light);
}

.rounded {
  border-radius: 12px;
}

img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .hero-image img {
    height: 250px;
  }

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

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

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

  .info-card {
    margin-bottom: 1.5rem;
  }

  .page-header {
    padding: 2rem 0;
  }

  .site-footer {
    text-align: center;
  }
}
