:root {
  --color-primary: #1b5e20;
  --color-primary-dark: #0d3817;
  --color-primary-light: #2e7d32;
  --color-secondary: #ffffff;
  --color-accent: #558b2f;
  --color-text: #1a1a1a;
  --color-text-light: #424242;
  --color-bg-light: #f5f5f5;
  --color-border: #e0e0e0;
  --color-success: #2e7d32;
}

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

html,
body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--color-text);
  background-color: #ffffff;
  line-height: 1.6;
}

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

a:hover {
  color: var(--color-primary-dark);
  text-decoration: none;
}

.navbar-custom {
  background-color: #ffffff;
  border-bottom: 2px solid var(--color-border);
  padding: 1rem 0;
}

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

.brand-logo {
  background-color: var(--color-primary);
  color: white;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 0.5rem;
  font-weight: bold;
}

.nav-link {
  color: var(--color-text-light) !important;
  font-weight: 500;
  margin-left: 1.5rem;
  transition: color 0.3s ease;
}

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

.hero-section {
  background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
  padding: 80px 0;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.hero-section h1 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero-section .lead {
  font-size: 1.3rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

.hero-section img {
  max-height: 500px;
  object-fit: cover;
}

.page-header {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  color: white;
  padding: 60px 0;
  text-align: center;
}

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

.page-header .lead {
  font-size: 1.2rem;
  opacity: 0.9;
}

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

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

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

.benefit-card {
  background: white;
  border: 1px solid var(--color-border);
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.benefit-card:hover {
  box-shadow: 0 10px 30px rgba(27, 94, 32, 0.15);
  transform: translateY(-5px);
}

.benefit-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.benefit-card h4 {
  color: var(--color-primary);
  font-weight: 700;
  margin-bottom: 1rem;
}

.offer-item {
  padding: 1.5rem;
  border-left: 4px solid var(--color-primary);
  background-color: #f9f9f9;
  margin-bottom: 1.5rem;
  border-radius: 4px;
}

.offer-item h5 {
  color: var(--color-primary);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.service-card {
  background: white;
  border: 1px solid var(--color-border);
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.service-card:hover {
  box-shadow: 0 10px 30px rgba(27, 94, 32, 0.15);
  transform: translateY(-5px);
}

.service-card h5 {
  color: var(--color-primary);
  font-weight: 700;
  margin-bottom: 1rem;
}

.service-detail-card {
  background: white;
  border: 2px solid var(--color-border);
  padding: 2.5rem;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
}

.service-detail-card:hover {
  border-color: var(--color-primary);
  box-shadow: 0 15px 40px rgba(27, 94, 32, 0.2);
}

.service-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.service-detail-card h3 {
  color: var(--color-primary);
  font-weight: 700;
  margin-bottom: 1rem;
}

.service-features {
  list-style: none;
  text-align: left;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
}

.service-features li {
  padding: 0.5rem 0;
  color: var(--color-text-light);
}

.service-features li:before {
  content: "✓ ";
  color: var(--color-success);
  font-weight: bold;
  margin-right: 0.5rem;
}

.why-card {
  background: white;
  border: 1px solid var(--color-border);
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  height: 100%;
}

.why-card h5 {
  color: var(--color-primary);
  font-weight: 700;
  margin-bottom: 1rem;
}

.testimonial-card {
  background: white;
  border-left: 4px solid var(--color-primary);
  padding: 2rem;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

.testimonial-author {
  color: var(--color-primary);
  font-weight: 700;
}

.audience-list {
  list-style: none;
}

.audience-list li {
  padding: 1rem;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text-light);
}

.audience-list li:last-child {
  border-bottom: none;
}

.audience-list li:before {
  content: "▪ ";
  color: var(--color-primary);
  font-weight: bold;
  margin-right: 1rem;
}

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

.cta-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.2rem;
}

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

.cta-section .btn-primary:hover {
  background-color: #f0f0f0;
  color: var(--color-primary-dark);
}

.process-timeline {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.process-step {
  flex: 1;
  min-width: 200px;
  text-align: center;
  padding: 1.5rem;
  background: white;
  border-radius: 8px;
  border: 2px solid var(--color-border);
}

.step-number {
  background-color: var(--color-primary);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  font-weight: bold;
}

.process-step h5 {
  color: var(--color-primary);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.inclusion-item {
  padding: 1.5rem;
  background: white;
  border-left: 4px solid var(--color-accent);
  border-radius: 4px;
}

.inclusion-item h5 {
  color: var(--color-primary);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.contact-info-card {
  background: white;
  border: 2px solid var(--color-border);
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
}

.contact-info-card h5 {
  color: var(--color-primary);
  font-weight: 700;
  margin-bottom: 1rem;
}

.contact-form {
  background: white;
  border: 1px solid var(--color-border);
  padding: 2.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

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

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

.contact-form .form-check-label {
  color: var(--color-text-light);
  margin-left: 0.5rem;
}

.faq-item {
  padding: 1.5rem;
  border-bottom: 1px solid var(--color-border);
  background: white;
}

.faq-item h5 {
  color: var(--color-primary);
  font-weight: 700;
  margin-bottom: 1rem;
}

.faq-item:last-child {
  border-bottom: none;
}

.thank-you-card {
  background: white;
  border: 2px solid var(--color-border);
  padding: 3rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.thank-you-icon {
  width: 80px;
  height: 80px;
  background-color: var(--color-success);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  margin: 0 auto 1.5rem;
  font-weight: bold;
}

.thank-you-card h1 {
  color: var(--color-primary);
  margin-bottom: 1rem;
}

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

.footer {
  background-color: #1a1a1a;
  color: #e0e0e0;
  padding-top: 3rem;
}

.footer h5,
.footer h6 {
  color: white;
  font-weight: 700;
}

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

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

.footer-links a {
  color: #e0e0e0;
  transition: color 0.3s ease;
}

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

.values-list {
  list-style: none;
}

.values-list li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text-light);
}

.values-list li:last-child {
  border-bottom: none;
}

.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1a1a1a;
  color: white;
  padding: 1.5rem;
  z-index: 1000;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

.cookie-banner.show {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  width: 100%;
}

.cookie-content p {
  margin: 0;
  flex: 1;
}

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

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

.cookie-buttons button {
  padding: 0.6rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

#accept-cookies {
  background-color: var(--color-primary);
  color: white;
  border: none;
}

#accept-cookies:hover {
  background-color: var(--color-primary-dark);
}

#reject-cookies {
  border: 1px solid #e0e0e0;
  background-color: transparent;
  color: white;
}

#reject-cookies:hover {
  border-color: var(--color-primary);
  color: var(--color-primary-light);
}

@media (max-width: 768px) {
  .hero-section {
    padding: 40px 0;
    min-height: auto;
  }

  .hero-section h1 {
    font-size: 1.8rem;
  }

  .hero-section .lead {
    font-size: 1rem;
  }

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

  .process-timeline {
    flex-direction: column;
  }

  .process-step {
    flex: 1 1 auto;
  }

  .cta-section {
    padding: 40px 0;
  }

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

  .cookie-banner.show {
    flex-direction: column;
    gap: 1rem;
    bottom: 0;
  }

  .cookie-content {
    flex-direction: column;
    gap: 1rem;
  }

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

  .nav-link {
    margin-left: 0;
    padding: 0.5rem 0;
  }
}

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

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

  .benefit-icon,
  .service-icon {
    font-size: 2rem;
  }

  .thank-you-icon {
    width: 60px;
    height: 60px;
    font-size: 2rem;
  }
}
