:root {
  --primary-green: #4a7c59;
  --primary-green-dark: #3a6047;
  --light-green: #e8f5e9;
  --bg-light: #f8f9fa;
  --text-dark: #2c3e50;
  --text-muted: #6c757d;
}

* {
  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: #ffffff;
}

.site-header {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #ffffff;
}

.navbar {
  padding: 1rem 0;
}

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

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

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

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

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

.hero-image img {
  width: 100%;
  height: 500px;
  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(74, 124, 89, 0.65) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  text-align: center;
  color: #ffffff;
  padding: 2rem;
}

.hero-content h1 {
  font-size: 2.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-content .lead {
  font-size: 1.5rem;
  font-weight: 400;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 1.5rem;
  text-align: center;
}

.content-section {
  position: relative;
}

.content-section h2 {
  margin-bottom: 1.5rem;
}

.content-section h3,
.content-section h4 {
  color: var(--primary-green);
  margin-bottom: 1rem;
}

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

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

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

.disclaimer-box p {
  margin-bottom: 0.75rem;
}

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

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

.cta-section h2 {
  color: #ffffff;
}

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

.btn-primary {
  background-color: var(--primary-green);
  border-color: var(--primary-green);
  padding: 0.75rem 2rem;
  font-weight: 600;
  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 8px rgba(0, 0, 0, 0.2);
}

.site-footer {
  margin-top: 3rem;
}

.site-footer h5 {
  color: #ffffff;
  margin-bottom: 1rem;
  font-weight: 600;
}

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

.site-footer a:hover {
  color: #ffffff;
}

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

.page-header {
  background: linear-gradient(135deg, var(--light-green) 0%, #ffffff 100%);
  border-bottom: 2px solid var(--primary-green);
}

.page-header h1 {
  color: var(--primary-green);
  font-weight: 700;
}

.contact-info h5 {
  color: var(--primary-green);
  font-weight: 600;
  margin-top: 1.5rem;
}

.form-control {
  border: 2px solid #e0e0e0;
  padding: 0.75rem;
  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.25);
}

.form-check-input:checked {
  background-color: var(--primary-green);
  border-color: var(--primary-green);
}

.thank-you-content {
  background-color: var(--light-green);
  border-radius: 8px;
}

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

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

.cookie-banner p {
  margin: 0;
}

.cookie-banner a {
  color: #ffffff;
  text-decoration: underline;
}

.cookie-banner .btn-light {
  background-color: #ffffff;
  color: var(--primary-green);
  border: none;
}

.cookie-banner .btn-light:hover {
  background-color: #f8f9fa;
}

.cookie-banner .btn-outline-light {
  color: #ffffff;
  border-color: #ffffff;
}

.cookie-banner .btn-outline-light:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

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

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

  .section-title {
    font-size: 1.75rem;
  }

  .hero-image,
  .hero-image img {
    min-height: 400px;
    height: 400px;
  }
}

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

  .hero-content .lead {
    font-size: 1.1rem;
  }

  .cookie-banner .btn {
    margin-top: 0.5rem;
    width: 100%;
  }
}
