:root {
  --primary-color: #2d7a3e;
  --primary-dark: #1f5a2d;
  --primary-light: #4a9d5b;
  --secondary-color: #f8f9fa;
  --text-dark: #2c3e50;
  --text-light: #6c757d;
  --border-color: #e0e0e0;
  --success-color: #28a745;
  --white: #ffffff;
}

* {
  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;
  padding-top: 70px;
}

.navbar {
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.75rem;
  color: var(--primary-color);
  letter-spacing: -0.5px;
}

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

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

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

.hero-section h1 {
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.hero-section .lead {
  color: var(--text-light);
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 12px 32px;
  font-weight: 600;
  transition: all 0.3s ease;
}

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

.btn-outline-primary {
  border-color: var(--primary-color);
  color: var(--primary-color);
  padding: 12px 32px;
  font-weight: 600;
}

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

.section {
  padding: 80px 0;
}

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

.bg-light {
  background-color: var(--secondary-color);
}

.feature-card,
.process-card,
.principle-card,
.testimonial-card {
  padding: 2rem;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover,
.process-card:hover,
.principle-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.feature-card h4,
.process-card h5,
.principle-card h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: 600;
}

.testimonial-card {
  border-left: 4px solid var(--primary-color);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

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

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

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

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

.custom-list li {
  padding: 0.5rem 0 0.5rem 2rem;
  position: relative;
}

.custom-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
  font-size: 1.2rem;
}

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

.cta-section h2,
.cta-section p {
  color: var(--white);
}

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

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

.page-header {
  padding: 120px 0 80px;
  background-color: var(--secondary-color);
}

.page-header-small {
  padding: 120px 0 60px;
  background-color: var(--secondary-color);
}

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

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

.form-control {
  border: 2px solid var(--border-color);
  padding: 0.75rem;
  border-radius: 4px;
  transition: border-color 0.3s ease;
}

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

.thank-you-section {
  padding: 120px 0;
  background-color: var(--secondary-color);
  min-height: calc(100vh - 70px);
  display: flex;
  align-items: center;
}

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

.section-policy {
  padding: 60px 0 80px;
}

.policy-content h2 {
  color: var(--text-dark);
  font-weight: 700;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-size: 1.75rem;
}

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

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

.policy-content p {
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.policy-content ul {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

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

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

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

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

.footer h5 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.footer a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

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

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

.footer hr {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 2rem 0;
}

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--text-dark);
  color: var(--white);
  padding: 1.5rem 0;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.cookie-consent.hidden {
  display: none;
}

.cookie-consent p {
  margin: 0;
}

.cookie-consent .btn-light {
  background-color: var(--white);
  color: var(--text-dark);
  border: none;
  padding: 0.5rem 1.5rem;
  font-weight: 600;
}

.cookie-consent .btn-outline-light {
  color: var(--white);
  border-color: var(--white);
  padding: 0.5rem 1.5rem;
  font-weight: 600;
}

.cookie-consent .btn-outline-light:hover {
  background-color: var(--white);
  color: var(--text-dark);
}

@media (max-width: 991px) {
  .hero-section {
    padding: 60px 0 80px;
  }

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

  .section {
    padding: 60px 0;
  }

  .thank-you-card {
    padding: 2rem;
  }
}

@media (max-width: 767px) {
  body {
    padding-top: 60px;
  }

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

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

  .btn-lg {
    padding: 10px 24px;
    font-size: 1rem;
  }

  .section {
    padding: 40px 0;
  }

  .cookie-consent .btn-light,
  .cookie-consent .btn-outline-light {
    width: 100%;
    margin-bottom: 0.5rem;
  }

  .cookie-consent .col-lg-3 {
    margin-top: 1rem;
  }
}
