:root {
  --primary-green: #2d7a3e;
  --primary-green-dark: #1f5a2c;
  --primary-green-light: #3a9951;
  --secondary-green: #4caf50;
  --accent-orange: #ff8c42;
  --neutral-dark: #212529;
  --neutral-medium: #6c757d;
  --neutral-light: #f8f9fa;
  --white: #ffffff;
  --text-primary: #212529;
  --text-secondary: #6c757d;
}

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

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--white);
}

.navbar {
  border-bottom: 1px solid #e9ecef;
  padding: 1rem 0;
}

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

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

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

.hero-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

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

.btn-primary:hover {
  background-color: var(--primary-green-dark);
  border-color: var(--primary-green-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(45, 122, 62, 0.3);
}

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

.btn-outline-primary:hover {
  background-color: var(--primary-green);
  color: var(--white);
  transform: translateY(-2px);
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
}

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

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

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

.info-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

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

.benefits-list li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
  font-size: 1.125rem;
}

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

.feature-box {
  background: var(--white);
  padding: 2rem;
  border-left: 4px solid var(--primary-green);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.feature-box h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.service-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  padding: 1.5rem 1.5rem 1rem;
}

.service-card p {
  padding: 0 1.5rem;
  flex-grow: 1;
}

.service-card .btn {
  margin: 1.5rem;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.audience-item {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.audience-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

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

.testimonial-rating {
  color: var(--accent-orange);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1rem;
}

.testimonial-author {
  font-weight: 600;
  color: var(--text-secondary);
}

.faq-item {
  background: var(--white);
  padding: 2rem;
  margin-bottom: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.faq-item h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-green);
  margin-bottom: 0.75rem;
}

.cta-final {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
}

.cta-box {
  background: var(--primary-green);
  color: var(--white);
  padding: 3rem;
  border-radius: 8px;
  text-align: center;
}

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

.cta-box p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

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

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

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

.page-header h1 {
  color: var(--white);
}

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

.value-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  height: 100%;
}

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

.value-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.commitment-box {
  background: var(--white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.commitment-box h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.location-info {
  background: var(--neutral-light);
  padding: 2rem;
  border-radius: 8px;
}

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

.service-badge {
  display: inline-block;
  background: var(--primary-green-light);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-weight: 600;
  margin-bottom: 1rem;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.service-features li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.service-features li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--primary-green);
  font-weight: 700;
}

.step-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  height: 100%;
}

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

.step-card h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.contact-form {
  margin-top: 2rem;
}

.contact-form .form-group {
  margin-bottom: 1.5rem;
}

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

.contact-form .form-control {
  padding: 0.75rem;
  border: 2px solid #e9ecef;
  border-radius: 4px;
}

.contact-form .form-control:focus {
  border-color: var(--primary-green);
  box-shadow: 0 0 0 0.2rem rgba(45, 122, 62, 0.15);
}

.contact-info-box {
  background: var(--neutral-light);
  padding: 2rem;
  border-radius: 8px;
  margin-bottom: 2rem;
}

.contact-info-box h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-green);
  margin-bottom: 1.5rem;
}

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

.contact-item strong {
  color: var(--text-primary);
  display: block;
  margin-bottom: 0.5rem;
}

.thank-you-section {
  padding: 4rem 0;
  min-height: 70vh;
  display: flex;
  align-items: center;
}

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

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

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

.next-steps h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.step-box {
  background: var(--neutral-light);
  padding: 1.5rem;
  border-radius: 8px;
  height: 100%;
}

.step-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.thank-you-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-reminder {
  background: var(--neutral-light);
  padding: 1.5rem;
  border-radius: 8px;
}

.policy-content {
  background: var(--white);
}

.policy-text {
  background: var(--white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.policy-text h2 {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--primary-green);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.policy-text h2:first-child {
  margin-top: 0;
}

.policy-text h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.policy-text ul {
  margin: 1rem 0;
  padding-left: 2rem;
}

.policy-text li {
  margin-bottom: 0.5rem;
}

.policy-text p {
  margin-bottom: 1rem;
}

.policy-text a {
  color: var(--primary-green);
  text-decoration: underline;
}

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

.disclaimer-box {
  background: var(--neutral-light);
  border-left: 4px solid var(--primary-green);
  padding: 1.5rem;
  margin-top: 2rem;
}

.footer {
  margin-top: 4rem;
}

.footer h5 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

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

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

.footer-links a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s;
}

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

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

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

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

.cookie-content p {
  margin-bottom: 0.5rem;
}

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

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

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

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

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

  .navbar-collapse {
    margin-top: 1rem;
  }

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

@media (max-width: 767px) {
  .hero-cta {
    flex-direction: column;
  }

  .hero-cta .btn {
    width: 100%;
  }

  .thank-you-actions {
    flex-direction: column;
  }

  .thank-you-actions .btn {
    width: 100%;
  }

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

  .cookie-buttons .btn {
    width: 100%;
  }
}
