:root {
  --primary-green: #4a9b7f;
  --primary-green-dark: #3a7d67;
  --primary-green-light: #e8f5f0;
  --neutral-dark: #2c3e35;
  --neutral-medium: #6b7b75;
  --neutral-light: #f8f9fa;
  --white: #ffffff;
  --border-color: #e0e6e3;
  --shadow: rgba(74, 155, 127, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--neutral-dark);
  background-color: var(--white);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.3;
  color: var(--neutral-dark);
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.5rem;
}
h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
  color: var(--neutral-medium);
}

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

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: 0 -2px 10px var(--shadow);
  padding: 1rem 0;
  z-index: 9999;
  border-top: 2px solid var(--primary-green);
}

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.cookie-content p {
  margin: 0;
  flex: 1;
  min-width: 250px;
}

.cookie-buttons {
  display: flex;
  gap: 0.5rem;
}

.site-header {
  background: var(--white);
  padding: 1rem 0;
  box-shadow: 0 2px 4px var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

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

.nav-link {
  color: var(--neutral-medium);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

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

.hero-section {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary-green-light) 0%, var(--white) 100%);
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

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

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 3rem 1rem;
}

.hero-content h1 {
  font-size: 3rem;
  color: var(--neutral-dark);
  margin-bottom: 1rem;
}

.hero-content .lead {
  font-size: 1.25rem;
  color: var(--neutral-medium);
  margin-bottom: 2rem;
}

.page-header {
  background: linear-gradient(135deg, var(--primary-green-light) 0%, var(--white) 100%);
  padding: 4rem 0 2rem;
  text-align: center;
}

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

.page-header .lead {
  color: var(--neutral-medium);
  font-size: 1.25rem;
}

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

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

.content-section h2 {
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 1rem;
}

.content-section h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--primary-green);
}

.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
  color: var(--neutral-medium);
}

.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-green);
  font-weight: bold;
  font-size: 1.25rem;
}

.btn {
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: none;
}

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

.btn-primary:hover {
  background-color: var(--primary-green-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px var(--shadow);
}

.btn-secondary {
  background-color: var(--neutral-light);
  color: var(--neutral-dark);
}

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

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
}

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

.testimonial-card:hover,
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px var(--shadow);
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary-green);
  margin-top: 1rem;
  margin-bottom: 0;
}

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

.faq-section {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  padding: 2rem;
  margin-bottom: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px var(--shadow);
  border-left: 4px solid var(--primary-green);
}

.faq-item h3 {
  color: var(--primary-green);
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}

.faq-item p {
  margin-bottom: 0;
}

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

.cta-section h2,
.cta-section .lead {
  color: var(--white);
}

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

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

.contact-info h3 {
  font-size: 1.125rem;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  color: var(--primary-green);
}

.contact-info h3:first-child {
  margin-top: 0;
}

.form-control {
  border: 2px solid var(--border-color);
  border-radius: 8px;
  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, 155, 127, 0.15);
}

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

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

.thank-you-content {
  max-width: 600px;
}

.success-icon {
  display: inline-block;
}

.legal-content h2 {
  margin-top: 3rem;
  font-size: 1.75rem;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  margin-top: 2rem;
  font-size: 1.25rem;
  color: var(--primary-green);
}

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

.legal-content .alert {
  border-left: 4px solid #ffc107;
}

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

.site-footer h4 {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

.site-footer p {
  color: var(--neutral-light);
  font-size: 0.95rem;
}

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

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

.footer-links a {
  color: var(--neutral-light);
  transition: color 0.3s ease;
}

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

.footer-bottom {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}

.footer-legal {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-legal li {
  font-size: 0.875rem;
}

.footer-legal a {
  color: var(--neutral-light);
}

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

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

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

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

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

  .cookie-content {
    flex-direction: column;
  }

  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }

  .footer-legal {
    flex-direction: column;
    gap: 0.5rem;
  }
}

@media (max-width: 576px) {
  .btn-lg {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }
}
