:root {
  --primary-green: #4a7c59;
  --primary-green-dark: #3a6147;
  --primary-green-light: #6b9d7a;
  --neutral-white: #ffffff;
  --neutral-light: #f8f9fa;
  --neutral-gray: #6c757d;
  --neutral-dark: #343a40;
  --accent-sage: #8ba888;
  --text-dark: #2d3436;
  --text-light: #636e72;
  --border-color: #e9ecef;
}

* {
  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(--neutral-white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-light);
}

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

a:hover {
  color: var(--primary-green-dark);
  text-decoration: none;
}

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

.navbar {
  padding: 1rem 0;
}

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

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

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

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

.hero-image {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(74, 124, 89, 0.85) 0%, rgba(107, 157, 122, 0.75) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  text-align: center;
  color: var(--neutral-white);
  max-width: 800px;
  padding: 2rem;
}

.hero-content h1 {
  color: var(--neutral-white);
  font-size: 3rem;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-content p {
  color: var(--neutral-white);
  font-size: 1.25rem;
  opacity: 0.95;
}

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

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

.image-card,
.info-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.image-card h4,
.info-card h4 {
  margin-top: 1rem;
  color: var(--primary-green);
}

.rounded {
  border-radius: 12px;
}

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

.feature-list li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
  color: var(--text-light);
}

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

.info-box {
  background-color: var(--neutral-white);
  border-left: 4px solid var(--primary-green);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.info-box h4 {
  color: var(--primary-green);
  margin-bottom: 0.75rem;
}

.info-box p {
  margin-bottom: 0;
}

.disclaimer-box {
  background-color: #fefaf3;
  border: 2px solid #f0ad4e;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.disclaimer-box p {
  color: var(--text-dark);
}

.disclaimer-box strong {
  color: var(--primary-green-dark);
}

.cta-section {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-light) 100%);
  padding: 5rem 0;
  color: var(--neutral-white);
}

.cta-section h2 {
  color: var(--neutral-white);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-section p {
  color: var(--neutral-white);
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

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

.btn-primary:hover {
  background-color: var(--primary-green-dark);
  border-color: var(--primary-green-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(74, 124, 89, 0.3);
}

.btn-light {
  background-color: var(--neutral-white);
  border-color: var(--neutral-white);
  color: var(--primary-green);
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-light:hover {
  background-color: var(--neutral-light);
  border-color: var(--neutral-light);
  color: var(--primary-green-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
  background-color: var(--neutral-gray);
  border-color: var(--neutral-gray);
  color: var(--neutral-white);
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background-color: var(--neutral-dark);
  border-color: var(--neutral-dark);
}

.btn-outline-primary {
  border: 2px solid var(--primary-green);
  color: var(--primary-green);
  background-color: transparent;
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

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

.site-footer {
  background-color: var(--neutral-dark);
  color: var(--neutral-light);
  padding: 3rem 0 1rem;
  margin-top: 3rem;
}

.site-footer h5 {
  color: var(--neutral-white);
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.site-footer p {
  color: var(--neutral-light);
  font-size: 0.9rem;
}

.footer-links {
  list-style: none;
  padding: 0;
}

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

.footer-links a {
  color: var(--neutral-light);
  transition: color 0.3s ease;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  margin-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-bottom p {
  color: var(--neutral-light);
  margin-bottom: 0.5rem;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-legal a {
  color: var(--neutral-light);
  font-size: 0.9rem;
}

.page-header {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-light) 100%);
  color: var(--neutral-white);
  padding: 4rem 0 3rem;
  margin-bottom: 3rem;
}

.page-header h1 {
  color: var(--neutral-white);
  margin-bottom: 0.5rem;
}

.page-header p {
  color: var(--neutral-white);
  opacity: 0.9;
  font-size: 1.125rem;
}

.contact-form-wrapper {
  background-color: var(--neutral-white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

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

.form-control:focus {
  border-color: var(--primary-green);
  box-shadow: 0 0 0 0.2rem rgba(74, 124, 89, 0.15);
}

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

.form-check-label {
  color: var(--text-light);
}

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

.contact-info h4 {
  color: var(--primary-green);
  margin-bottom: 1.5rem;
}

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

.thank-you-section {
  padding: 6rem 0;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.thank-you-content {
  background-color: var(--neutral-white);
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.thank-you-content h1 {
  color: var(--primary-green);
  margin-bottom: 1.5rem;
}

.thank-you-content .lead {
  color: var(--text-dark);
  font-size: 1.25rem;
  font-weight: 500;
}

.policy-content h2 {
  color: var(--primary-green);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.policy-content h3 {
  color: var(--primary-green-dark);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

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

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--neutral-dark);
  color: var(--neutral-white);
  padding: 1.5rem 0;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  display: none;
}

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

.cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.cookie-content p {
  color: var(--neutral-white);
  margin: 0;
  flex: 1;
  min-width: 250px;
}

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

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.alert {
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.alert-warning {
  background-color: #fff3cd;
  border-color: #ffeaa7;
  color: #856404;
}

.alert-heading {
  color: #856404;
  font-weight: 600;
}

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

  .hero-content p {
    font-size: 1rem;
  }

  .hero-image {
    height: 350px;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

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

  .cta-section h2 {
    font-size: 1.75rem;
  }

  .cta-section p {
    font-size: 1rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-legal {
    justify-content: center;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }

  .thank-you-section {
    padding: 3rem 0;
  }

  .thank-you-content {
    padding: 2rem;
  }
}

@media (max-width: 576px) {
  .btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }

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

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

  .contact-form-wrapper {
    padding: 1.5rem;
  }
}
