:root {
  --primary-green: #4a7c59;
  --primary-green-dark: #3a614a;
  --primary-green-light: #6b9a7a;
  --accent-sage: #8b9f8d;
  --accent-cream: #f5f3ed;
  --neutral-white: #ffffff;
  --neutral-gray-light: #f8f9fa;
  --neutral-gray-medium: #e9ecef;
  --neutral-gray-dark: #6c757d;
  --neutral-black: #2d3436;
  --text-primary: #2d3436;
  --text-secondary: #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-primary);
  line-height: 1.6;
  background-color: var(--neutral-white);
}

.site-header {
  background-color: var(--neutral-white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  padding: 1rem 0;
}

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

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

.nav-link {
  color: var(--text-primary);
  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;
  background: linear-gradient(135deg, var(--primary-green-light) 0%, var(--primary-green) 100%);
  overflow: hidden;
}

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

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

.hero-content {
  position: relative;
  z-index: 2;
  padding: 4rem 0;
  color: var(--neutral-white);
}

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

.hero-content .lead {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

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

.page-hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.page-hero .lead {
  font-size: 1.1rem;
  opacity: 0.95;
}

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

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

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

.content-section p {
  margin-bottom: 1rem;
  color: var(--text-primary);
  line-height: 1.7;
}

.content-section ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.content-section ul li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

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

.max-width-800 {
  max-width: 800px;
}

.max-width-900 {
  max-width: 900px;
}

.btn-primary {
  background-color: var(--primary-green);
  border-color: var(--primary-green);
  color: var(--neutral-white);
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 6px;
  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 12px rgba(74, 124, 89, 0.3);
}

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

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

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

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

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

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

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

.rounded {
  border-radius: 8px;
}

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

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

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

.consultation-areas .area-item {
  margin-bottom: 2rem;
}

.consultation-areas .area-item h3 {
  font-size: 1.3rem;
  color: var(--primary-green);
  margin-bottom: 0.5rem;
}

.consultation-areas .area-item p {
  color: var(--text-secondary);
  margin-bottom: 0;
}

.testimonials-section {
  background-color: var(--neutral-gray-light);
}

.testimonial-card {
  background-color: var(--neutral-white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.testimonial-card p {
  margin-bottom: 1rem;
  font-style: italic;
  color: var(--text-primary);
}

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

.cta-section {
  background: linear-gradient(135deg, var(--primary-green-light) 0%, var(--primary-green) 100%);
  padding: 5rem 0;
  color: var(--neutral-white);
  text-align: center;
}

.cta-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--neutral-white);
}

.cta-section .lead {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

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

.cta-section .btn-primary:hover {
  background-color: var(--accent-cream);
  border-color: var(--accent-cream);
  color: var(--primary-green-dark);
}

.contact-info .contact-item {
  margin-bottom: 2rem;
}

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

.contact-info .contact-item p {
  color: var(--text-primary);
  margin-bottom: 0;
}

.form-control {
  border: 1px solid var(--neutral-gray-medium);
  border-radius: 6px;
  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.15);
}

.form-check-label {
  color: var(--text-secondary);
}

.form-check-label a {
  color: var(--primary-green);
}

.thank-you-section {
  padding: 6rem 0;
  background-color: var(--neutral-gray-light);
}

.thank-you-content {
  background-color: var(--neutral-white);
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.thank-you-content h1 {
  color: var(--primary-green);
  margin-bottom: 1.5rem;
}

.thank-you-actions {
  margin-top: 2rem;
}

.thank-you-actions .btn {
  margin: 0 0.5rem;
}

.legal-content h2 {
  color: var(--primary-green-dark);
  font-size: 1.8rem;
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
}

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

.legal-content p {
  line-height: 1.8;
}

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

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

.disclaimer-highlight {
  background-color: var(--accent-cream);
  border-left: 4px solid var(--primary-green);
  padding: 2rem;
  border-radius: 8px;
  margin: 2rem 0;
}

.disclaimer-highlight h2 {
  margin-top: 0;
}

.site-footer {
  background-color: var(--neutral-black);
  color: var(--neutral-white);
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

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

.site-footer p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  line-height: 1.8;
}

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

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

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

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  margin-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.85rem;
}

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

.footer-legal li {
  margin: 0;
}

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

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

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--neutral-white);
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.15);
  padding: 1.5rem;
  z-index: 10000;
  display: none;
}

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

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.cookie-content p {
  margin: 0;
  flex: 1;
  min-width: 300px;
  color: var(--text-primary);
}

.cookie-content a {
  color: var(--primary-green);
}

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

.cookie-buttons .btn {
  padding: 0.5rem 1.5rem;
  font-size: 0.9rem;
  white-space: nowrap;
}

.cookie-customize {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.cookie-customize-content {
  background-color: var(--neutral-white);
  padding: 2rem;
  border-radius: 12px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
}

.cookie-customize-content h3 {
  color: var(--primary-green);
  margin-bottom: 1.5rem;
}

.cookie-option {
  margin-bottom: 1.5rem;
  padding: 1rem;
  background-color: var(--neutral-gray-light);
  border-radius: 8px;
}

.cookie-option label {
  display: flex;
  align-items: center;
  font-weight: 600;
  margin-bottom: 0.5rem;
  cursor: pointer;
}

.cookie-option input[type="checkbox"] {
  margin-right: 0.75rem;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.cookie-option p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-left: 1.8rem;
}

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

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

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

  .cta-section h2 {
    font-size: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .footer-legal {
    justify-content: center;
  }

  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-buttons {
    width: 100%;
  }

  .cookie-buttons .btn {
    flex: 1;
  }

  .thank-you-actions .btn {
    display: block;
    width: 100%;
    margin: 0.5rem 0;
  }
}
