:root {
  --primary-color: #2d5f3f;
  --primary-dark: #1d3f2a;
  --primary-light: #4a7f5f;
  --secondary-color: #6b8e7f;
  --text-dark: #2c2c2c;
  --text-light: #666666;
  --bg-light: #f8f9fa;
  --border-color: #e0e0e0;
}

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

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

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

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

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

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

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

.hero-image {
  max-height: 500px;
  overflow: hidden;
}

.hero-image img {
  object-fit: cover;
  height: 500px;
  filter: brightness(0.9);
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  z-index: 2;
}

.hero-content h1,
.hero-content p {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.page-hero .hero-image {
  max-height: 300px;
  overflow: hidden;
}

.page-hero .hero-image img {
  object-fit: cover;
  height: 300px;
  filter: brightness(0.7);
}

.hero-overlay {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  z-index: 2;
}

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

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

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

.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
}

.card {
  border: 1px solid var(--border-color);
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card-title {
  color: var(--primary-color);
  font-weight: 600;
}

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

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

.main-footer {
  background-color: #2c2c2c;
}

.main-footer a {
  text-decoration: none;
  transition: color 0.3s ease;
}

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

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

.contact-form .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(45, 95, 63, 0.25);
}

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

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

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

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

.cookie-banner .btn-primary {
  background-color: var(--primary-color);
}

.cookie-banner .btn-outline-secondary {
  color: white;
  border-color: white;
}

.cookie-banner .btn-outline-secondary:hover {
  background-color: white;
  color: var(--text-dark);
}

.table {
  margin-top: 1rem;
}

.table thead th {
  background-color: var(--bg-light);
  color: var(--text-dark);
  font-weight: 600;
}

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

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

  .btn-lg {
    padding: 0.5rem 1.5rem;
    font-size: 1rem;
  }

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