:root {
  --primary: #2d8659;
  --primary-dark: #1f5e3f;
  --primary-light: #e8f5f0;
  --secondary: #333333;
  --text: #333333;
  --text-muted: #6c757d;
  --bg-light: #f8f9fa;
  --white: #ffffff;
  --border: #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);
  line-height: 1.6;
  background-color: var(--white);
}
.text-primary {
  color: var(--primary) !important;
}
.bg-primary {
  background-color: var(--primary) !important;
}
.bg-primary-light {
  background-color: var(--primary-light) !important;
}
.btn-primary {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
}
.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(45, 134, 89, 0.3);
}
.btn-outline-primary {
  color: var(--primary);
  border-color: var(--primary);
  font-weight: 600;
}
.btn-outline-primary:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}
.btn-light {
  background-color: var(--white);
  border-color: var(--white);
  color: var(--primary);
  font-weight: 600;
}
.btn-light:hover {
  background-color: var(--primary-light);
  border-color: var(--primary-light);
  color: var(--primary-dark);
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--white);
}
.navbar {
  padding: 1rem 0;
}
.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary) !important;
}
.nav-link {
  color: var(--text) !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  transition: color 0.3s ease;
}
.nav-link:hover {
  color: var(--primary) !important;
}
.hero-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--white) 100%);
}
.min-vh-75 {
  min-height: 75vh;
}
section {
  padding: 4rem 0;
}
.page-header {
  padding: 4rem 0;
  text-align: center;
}
.display-4 {
  font-weight: 700;
  color: var(--text);
}
.display-5 {
  font-weight: 700;
  color: var(--text);
}
.display-6 {
  font-weight: 700;
  color: var(--text);
}
.lead {
  font-size: 1.25rem;
  font-weight: 400;
}
.card {
  transition: all 0.3s ease;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.icon-large {
  font-size: 2.5rem;
}
.icon-huge {
  font-size: 5rem;
}
.list-benefit {
  list-style: none;
  padding-left: 0;
}
.list-benefit li {
  padding-left: 1.5rem;
  position: relative;
}
.list-benefit li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}
.shadow {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.shadow-sm {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}
.shadow-lg {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}
.rounded {
  border-radius: 0.5rem;
}
.section-cta {
  padding: 5rem 0;
}
.process-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto;
}
.site-footer {
  margin-top: 4rem;
}
.site-footer a {
  text-decoration: none;
  transition: color 0.3s ease;
}
.site-footer a:hover {
  color: var(--white) !important;
}
.form-label {
  color: var(--text);
  margin-bottom: 0.5rem;
}
.form-control,
.form-select {
  border: 2px solid var(--border);
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
}
.form-control:focus,
.form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.2rem rgba(45, 134, 89, 0.15);
}
.form-check-input:checked {
  background-color: var(--primary);
  border-color: var(--primary);
}
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(51, 51, 51, 0.95);
  color: var(--white);
  padding: 1.5rem 0;
  z-index: 9999;
  border-top: 3px solid var(--primary);
}
.cookie-banner a {
  color: var(--white);
  text-decoration: underline;
}
.section-thankyou {
  padding: 5rem 0;
  min-height: 60vh;
}
.policy-content {
  font-size: 1rem;
  line-height: 1.8;
}
.policy-content h2 {
  color: var(--primary);
}
.policy-content ul {
  margin-bottom: 1.5rem;
}
.policy-content li {
  margin-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .hero-section {
    padding: 3rem 0;
  }
  section {
    padding: 3rem 0;
  }
  .page-header {
    padding: 3rem 0;
  }
  .display-4 {
    font-size: 2rem;
  }
  .display-5 {
    font-size: 1.75rem;
  }
  .navbar-brand {
    font-size: 1.25rem;
  }
}
@media (max-width: 767px) {
  .hero-section {
    padding: 2rem 0;
  }
  section {
    padding: 2rem 0;
  }
  .display-4 {
    font-size: 1.75rem;
  }
  .lead {
    font-size: 1.1rem;
  }
  .btn-lg {
    padding: 0.75rem 1.25rem;
    font-size: 1rem;
  }
}
