:root {
  --primary-green: #4a7c59;
  --primary-green-dark: #3a6245;
  --primary-green-light: #5a9c6f;
  --accent-sage: #8ba888;
  --neutral-light: #f8f9fa;
  --neutral-gray: #6c757d;
  --neutral-dark: #343a40;
  --white: #ffffff;
  --text-dark: #212529;
  --text-muted: #6c757d;
  --border-color: #dee2e6;
}

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

p {
  margin-bottom: 1rem;
}

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

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

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

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

.navbar {
  padding: 1rem 0;
}

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

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

.nav-link {
  font-weight: 500;
  color: var(--text-dark);
  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: 4rem;
}

.hero-image {
  position: relative;
  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(58, 98, 69, 0.75) 100%);
  display: flex;
  align-items: center;
}

.hero-content {
  color: var(--white);
  max-width: 700px;
}

.hero-content h1 {
  color: var(--white);
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

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

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

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

.page-hero .lead,
.page-hero p {
  color: rgba(255, 255, 255, 0.9);
}

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

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

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

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

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

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

.info-card img {
  border-radius: 8px;
}

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

.btn-primary:hover,
.btn-primary:focus {
  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-secondary {
  background-color: var(--neutral-gray);
  border-color: var(--neutral-gray);
  padding: 0.75rem 2rem;
  font-weight: 500;
  border-radius: 6px;
  transition: all 0.3s ease;
}

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

.cta-section {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--accent-sage) 100%);
  color: var(--white);
  padding: 5rem 0;
  text-align: center;
}

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

.cta-section .lead {
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2rem;
}

.cta-section .btn-primary {
  background-color: var(--white);
  color: var(--primary-green);
  border-color: var(--white);
}

.cta-section .btn-primary:hover {
  background-color: var(--neutral-light);
  color: var(--primary-green-dark);
  border-color: var(--neutral-light);
}

.disclaimer-box {
  background-color: var(--neutral-light);
  border-left: 4px solid var(--primary-green);
  padding: 2rem;
  border-radius: 6px;
  margin: 2rem 0;
}

.disclaimer-box p:last-child {
  margin-bottom: 0;
}

.contact-form-wrapper {
  background-color: var(--neutral-light);
  padding: 2.5rem;
  border-radius: 8px;
}

.form-control {
  border-radius: 6px;
  border: 1px solid var(--border-color);
  padding: 0.75rem;
}

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

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

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

.thank-you-content {
  background-color: var(--neutral-light);
  padding: 3rem;
  border-radius: 12px;
}

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

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

.policy-content h2:first-of-type {
  margin-top: 0;
}

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

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

.policy-content li {
  margin-bottom: 0.5rem;
}

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

.site-footer h5 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

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

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

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

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

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

.site-footer hr {
  border-color: rgba(255, 255, 255, 0.1);
  margin: 2rem 0;
}

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

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

.cookie-consent p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.9);
}

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

.cookie-consent .btn {
  margin-left: 0.5rem;
}

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

  h2 {
    font-size: 1.75rem;
  }

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

  .hero-image {
    height: 400px;
  }

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

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

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

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

  .cookie-consent .btn {
    margin-top: 1rem;
    margin-left: 0;
  }
}

@media (max-width: 576px) {
  .hero-image {
    height: 300px;
  }

  .page-hero {
    padding: 2.5rem 0;
  }
}
