:root {
  --lime-500: #84cc16;
  --lime-600: #65a30d;
  --lime-700: #4d7c0f;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --white: #ffffff;
  --black: #000000;
}

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

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

.navbar {
  padding: 1rem 0;
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.75rem;
  color: var(--lime-600);
  transition: color 0.3s ease;
}

.brand-text {
  color: var(--lime-600);
  font-weight: 700;
  font-size: 1.75rem;
}

.brand-text-footer {
  color: var(--lime-500);
  font-weight: 700;
  font-size: 1.5rem;
}

.navbar-brand:hover {
  color: var(--lime-700);
}

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

.nav-link:hover {
  color: var(--lime-600);
}

.main-content {
  padding-top: 76px;
  min-height: calc(100vh - 76px);
}

.hero-section {
  position: relative;
  height: 70vh;
  min-height: 500px;
  overflow: hidden;
}

.hero-image-container {
  width: 100%;
  height: 100%;
  position: relative;
}

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  text-align: center;
  color: var(--white);
  padding: 2rem;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  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 h2 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--gray-900);
}

.content-section p {
  font-size: 1.125rem;
  margin-bottom: 1rem;
  color: var(--gray-700);
  line-height: 1.75;
}

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

.page-header {
  background: linear-gradient(135deg, var(--lime-600), var(--lime-700));
  color: var(--white);
  padding: 4rem 0 3rem;
  text-align: center;
}

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

.page-header .lead {
  font-size: 1.5rem;
  opacity: 0.95;
}

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

.btn-primary:hover {
  background-color: var(--lime-700);
  border-color: var(--lime-700);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(132, 204, 22, 0.3);
}

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

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

.card {
  border: 1px solid var(--gray-200);
  border-radius: 0.75rem;
  transition: all 0.3s ease;
}

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

.card-title {
  color: var(--lime-600);
  font-weight: 700;
  font-size: 1.25rem;
}

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

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

.testimonial-text {
  font-style: italic;
  color: var(--gray-700);
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

.testimonial-author {
  font-weight: 600;
  color: var(--lime-600);
  margin-bottom: 0;
}

.accordion .card {
  border: 1px solid var(--gray-200);
  margin-bottom: 0.5rem;
}

.accordion .card-header {
  background-color: var(--white);
  padding: 0;
}

.accordion .btn-link {
  color: var(--gray-800);
  text-decoration: none;
  font-weight: 600;
  padding: 1rem 1.25rem;
  width: 100%;
  text-align: left;
  display: block;
}

.accordion .btn-link:hover {
  color: var(--lime-600);
}

.accordion .card-body {
  padding: 1.25rem;
  color: var(--gray-700);
}

.cta-section {
  background: linear-gradient(135deg, var(--lime-600), var(--lime-700));
  color: var(--white);
  padding: 5rem 0;
}

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

.cta-section .lead {
  color: var(--white);
  opacity: 0.95;
}

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

.cta-section .btn-primary:hover {
  background-color: var(--gray-100);
  border-color: var(--gray-100);
  color: var(--lime-700);
}

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

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

.contact-item h5 {
  color: var(--lime-600);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.contact-item a {
  color: var(--gray-700);
  text-decoration: none;
}

.contact-item a:hover {
  color: var(--lime-600);
  text-decoration: underline;
}

.form-control {
  border: 2px solid var(--gray-200);
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--lime-600);
  box-shadow: 0 0 0 0.2rem rgba(132, 204, 22, 0.25);
}

.form-group label {
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 0.5rem;
}

.form-check-label {
  color: var(--gray-700);
}

.form-check-label a {
  color: var(--lime-600);
  text-decoration: none;
}

.form-check-label a:hover {
  text-decoration: underline;
}

.thank-you-content {
  padding: 3rem 0;
}

.legal-content {
  padding: 2rem 0;
}

.legal-content h2 {
  color: var(--gray-900);
  font-size: 1.75rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.legal-content h3 {
  color: var(--lime-600);
  font-size: 1.375rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.legal-content h4 {
  color: var(--gray-800);
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
}

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

.legal-content li {
  margin-bottom: 0.5rem;
  color: var(--gray-700);
}

.legal-content p {
  margin-bottom: 1rem;
  color: var(--gray-700);
  line-height: 1.75;
}

.legal-content strong {
  color: var(--gray-900);
}

.footer {
  background-color: var(--gray-900);
  color: var(--gray-300);
}

.footer h5 {
  color: var(--white);
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer a {
  color: var(--gray-300);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--lime-500);
}

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

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

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

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

.cookie-consent-text h5 {
  color: var(--gray-900);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.cookie-consent-text p {
  color: var(--gray-700);
  margin-bottom: 0;
}

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

.rounded {
  border-radius: 0.75rem;
}

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

.shadow-sm {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991px) {
  .hero-title {
    font-size: 2.25rem;
  }

  .hero-subtitle {
    font-size: 1.25rem;
  }

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

  .page-header h1 {
    font-size: 2.25rem;
  }

  .cookie-consent-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-consent-buttons {
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .hero-section {
    height: 50vh;
    min-height: 400px;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .hero-subtitle {
    font-size: 1.125rem;
  }

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

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

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

  .page-header {
    padding: 3rem 0 2rem;
  }

  .page-header h1 {
    font-size: 1.875rem;
  }

  .page-header .lead {
    font-size: 1.25rem;
  }
}
