:root {
  --primary-color: #2f4a38;
  --secondary-color: #fdfaf5;
  --accent-color: #5a7a65;
  --text-dark: #2c3e34;
  --text-light: #6b7c72;
  --background-light: #f8f9f7;
  --border-color: #e1e5e3;
}

* {
  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);
  background-color: var(--secondary-color);
  line-height: 1.6;
}

.navbar {
  background-color: white !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  padding: 1rem 0;
}

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

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

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

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

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(47, 74, 56, 0.85), rgba(90, 122, 101, 0.75));
  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;
  font-weight: 700;
  margin-bottom: 1rem;
}

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

.disclaimer-text {
  font-size: 1rem;
  font-weight: 500;
  background-color: rgba(255, 255, 255, 0.2);
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  display: inline-block;
}

.content-section {
  margin-bottom: 4rem;
}

.content-section h2 {
  color: var(--primary-color);
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.content-section h3 {
  color: var(--accent-color);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.content-section p {
  color: var(--text-dark);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

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

.info-box h3 {
  margin-top: 0;
}

.disclaimer-section {
  background-color: var(--background-light);
  padding: 3rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.cta-section {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: white;
  padding: 4rem 2rem;
  border-radius: 12px;
  margin: 3rem 0;
}

.cta-section h2 {
  color: white;
  margin-bottom: 1rem;
}

.cta-section p {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

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

.btn-primary:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  transform: translateY(-2px);
}

.footer {
  background-color: var(--primary-color);
  color: white;
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
}

.footer h3 {
  color: white;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.footer p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.footer-disclaimer {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 0.75rem;
  border-radius: 6px;
  margin-top: 1rem;
  font-size: 0.9rem;
}

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

.footer a:hover {
  color: white;
  text-decoration: none;
}

.footer ul {
  padding-left: 0;
}

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

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

.cookie-banner p {
  margin: 0;
  font-size: 0.95rem;
}

.cookie-banner .btn {
  padding: 0.5rem 1.5rem;
  font-weight: 600;
}

.contact-info {
  background-color: var(--background-light);
  padding: 2rem;
  border-radius: 8px;
  margin-top: 1rem;
}

.thank-you-box {
  background-color: var(--background-light);
  padding: 3rem;
  border-radius: 12px;
  margin-top: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

img.img-fluid {
  border-radius: 8px;
}

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

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

  .hero-section {
    height: 400px;
  }

  .content-section h2 {
    font-size: 1.5rem;
  }

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

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

  .hero-section {
    height: 350px;
  }
}
