:root {
  --primary-green: #2d6a4f;
  --primary-green-dark: #1b4332;
  --primary-green-light: #40916c;
  --accent-green: #52b788;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --text-dark: #212529;
  --text-gray: #6c757d;
  --border-color: #dee2e6;
}

* {
  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-dark);
  line-height: 1.6;
  font-size: 16px;
  background-color: var(--bg-white);
}

.navbar {
  padding: 1rem 0;
}

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

.nav-link {
  color: var(--text-dark) !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  transition: color 0.3s ease;
}

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

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

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

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

.btn-outline-primary {
  color: var(--primary-green);
  border-color: var(--primary-green);
  font-weight: 600;
}

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

.hero-section {
  padding: 120px 0 80px;
  background-color: var(--bg-white);
}

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

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

.section-white {
  padding: 80px 0;
  background-color: var(--bg-white);
}

.section-light {
  padding: 80px 0;
  background-color: var(--bg-light);
}

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

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-gray);
  margin-bottom: 2rem;
}

.text-content {
  font-size: 1rem;
  color: var(--text-gray);
  line-height: 1.8;
}

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

.feature-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 1.5rem;
}

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

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

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

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

.benefit-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

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

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

.approach-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.delivery-card {
  padding: 2rem;
  background: var(--bg-light);
  border-radius: 8px;
  border-left: 4px solid var(--primary-green);
}

.delivery-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

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

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

.testimonial-author {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary-green);
}

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

.cta-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

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

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

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

.page-subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
}

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

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

.expertise-list {
  padding-left: 1.5rem;
  color: var(--text-gray);
}

.expertise-list li {
  margin-bottom: 0.5rem;
}

.difference-card {
  padding: 2rem;
  background: var(--bg-white);
  border-radius: 8px;
  border-top: 4px solid var(--accent-green);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.difference-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.contact-box {
  padding: 2rem;
  background: var(--bg-light);
  border-radius: 8px;
  border: 2px solid var(--primary-green);
  max-width: 600px;
  margin: 0 auto;
}

.contact-box-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

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

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

.service-card > * {
  padding: 0 1.5rem;
}

.service-card .service-image {
  padding: 0;
}

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

.service-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.service-description {
  font-size: 0.9375rem;
  color: var(--text-gray);
  margin-bottom: 1rem;
}

.service-includes {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1rem;
}

.service-includes li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.875rem;
  color: var(--text-gray);
}

.service-includes li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-green);
  font-weight: 700;
}

.process-card {
  padding: 1.5rem;
  text-align: center;
}

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

.process-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.contact-info-card {
  padding: 1.5rem;
  background: var(--bg-light);
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.contact-info-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--primary-green);
  margin-bottom: 0.75rem;
}

.contact-info-card a {
  color: var(--primary-green);
  text-decoration: none;
}

.contact-info-card a:hover {
  text-decoration: underline;
}

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

.form-control:focus {
  border-color: var(--primary-green);
  box-shadow: 0 0 0 0.2rem rgba(45, 106, 79, 0.25);
}

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

.thank-you-section {
  padding: 120px 0 80px;
  background-color: var(--bg-light);
}

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

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

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

.thank-you-text {
  font-size: 1.125rem;
  color: var(--text-gray);
  margin-bottom: 2rem;
}

.thank-you-details {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: 8px;
  margin-top: 2rem;
}

.details-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 1.5rem;
}

.next-step {
  padding: 1rem;
}

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

.step-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.step-text {
  font-size: 0.875rem;
  color: var(--text-gray);
}

.legal-section {
  padding: 120px 0 80px;
  background-color: var(--bg-white);
}

.legal-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.legal-date {
  font-size: 0.875rem;
  color: var(--text-gray);
  margin-bottom: 3rem;
}

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

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

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

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

.legal-content ul {
  color: var(--text-gray);
  margin-bottom: 1rem;
  padding-left: 2rem;
}

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

.legal-content a {
  color: var(--primary-green);
  text-decoration: none;
}

.legal-content a:hover {
  text-decoration: underline;
}

.footer {
  background-color: var(--text-dark);
  color: var(--bg-light);
  padding: 60px 0 30px;
}

.footer-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--bg-white);
  margin-bottom: 1rem;
}

.footer-text {
  font-size: 0.875rem;
  color: var(--bg-light);
  line-height: 1.8;
}

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

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

.footer-links a {
  color: var(--bg-light);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--primary-green-dark);
  color: var(--bg-white);
  padding: 1.5rem 0;
  z-index: 1000;
  display: none;
}

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

.cookie-banner p {
  margin: 0;
  font-size: 0.875rem;
}

.cookie-link {
  color: var(--accent-green);
  text-decoration: underline;
}

.cookie-link:hover {
  color: var(--bg-white);
}

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

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

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

  .hero-section {
    padding: 100px 0 60px;
  }

  .section-white,
  .section-light {
    padding: 60px 0;
  }

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

  .page-header {
    padding: 100px 0 40px;
  }

  .page-title {
    font-size: 2rem;
  }
}

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

  .hero-text {
    font-size: 1rem;
  }

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

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

  .btn-lg {
    padding: 0.625rem 1.5rem;
    font-size: 1rem;
  }

  .approach-number {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

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

  .thank-you-title {
    font-size: 1.75rem;
  }

  .legal-title {
    font-size: 2rem;
  }

  .cookie-banner .btn {
    width: 100%;
    margin-top: 0.5rem;
  }
}
