:root {
  --primary-green: #3d7c5d;
  --light-green: #e8f3ed;
  --dark-gray: #2c2c2c;
  --medium-gray: #666666;
  --light-gray: #f8f9fa;
  --border-color: #e0e0e0;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
  margin-top: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

.lead {
  font-size: 1.25rem;
  line-height: 1.5;
}

.site-header {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

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

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

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

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

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

.hero-image {
  position: relative;
  width: 100%;
  height: 600px;
  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: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

.hero-content .lead {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

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

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

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

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

.feature-card h3 {
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.faq-item {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

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

.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: #2d5c45;
  border-color: #2d5c45;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

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

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

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

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

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

.form-control {
  border: 2px solid var(--border-color);
  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(61, 124, 93, 0.15);
}

.site-footer {
  background-color: var(--dark-gray);
}

.site-footer h5 {
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.site-footer a {
  transition: opacity 0.3s ease;
}

.site-footer a:hover {
  opacity: 0.8;
  text-decoration: none;
}

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

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

.cookie-banner p {
  margin-bottom: 0;
}

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

.cookie-banner .btn {
  min-width: 100px;
}

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

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

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

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

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

@media (max-width: 767px) {
  .cookie-banner .btn {
    margin-top: 0.5rem;
    width: 100%;
  }

  .nav-link {
    margin-left: 0;
  }
}
