:root {
  --primary-green: #4a7c59;
  --primary-green-light: #5a8c69;
  --primary-green-dark: #3a6c49;
  --bg-light: #f8faf9;
  --bg-primary-light: #e8f0eb;
  --text-dark: #2c3e35;
  --text-muted: #6b7d74;
  --white: #ffffff;
  --border-color: #d4ddd8;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--white);
}

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

.navbar {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

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

.hero-section {
  position: relative;
  height: 70vh;
  min-height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(74, 124, 89, 0.85) 0%, rgba(44, 62, 53, 0.75) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  text-align: center;
  width: 100%;
}

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

.hero-content .lead {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

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

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

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

h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

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

h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
}

h5 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
}

p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.btn-primary {
  background-color: var(--primary-green);
  border-color: var(--primary-green);
  padding: 12px 28px;
  font-weight: 500;
  border-radius: 8px;
  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);
  padding: 12px 28px;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.3s ease;
}

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

.btn-outline-secondary {
  color: var(--text-muted);
  border-color: var(--border-color);
  padding: 12px 28px;
  font-weight: 500;
  border-radius: 8px;
}

.btn-outline-secondary:hover {
  background-color: var(--bg-light);
  border-color: var(--border-color);
  color: var(--text-dark);
}

.card {
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

.card-img-top {
  height: 200px;
  object-fit: cover;
}

.card-body {
  padding: 1.5rem;
}

.card-title {
  margin-bottom: 0.75rem;
}

.card-text {
  font-size: 0.95rem;
}

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

.custom-list li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-muted);
}

.custom-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1rem;
  width: 8px;
  height: 8px;
  background-color: var(--primary-green);
  border-radius: 50%;
}

.info-box {
  background-color: var(--white);
  padding: 1.25rem;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.info-box h5 {
  color: var(--primary-green);
  margin-bottom: 0.5rem;
}

.info-box p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

.process-step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.process-step h5 {
  margin-bottom: 0.25rem;
}

.process-step p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

.disclaimer-box {
  background-color: var(--bg-light);
  border-left: 4px solid var(--primary-green);
  padding: 1.5rem;
  border-radius: 0 10px 10px 0;
}

.disclaimer-box p {
  margin-bottom: 0.75rem;
}

.disclaimer-box p:last-of-type {
  margin-bottom: 0;
}

.accordion .card {
  border-radius: 10px !important;
  overflow: hidden;
}

.accordion .card-header {
  padding: 0;
  border: none;
}

.accordion .btn-link {
  color: var(--text-dark);
  font-weight: 600;
  text-decoration: none;
  padding: 1rem 1.25rem;
  display: block;
}

.accordion .btn-link:hover {
  color: var(--primary-green);
  text-decoration: none;
}

.accordion .card-body {
  color: var(--text-muted);
  padding-top: 0;
}

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

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

.cta-section p {
  color: rgba(255, 255, 255, 0.9);
}

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

.cta-section .btn-primary:hover {
  background-color: rgba(255, 255, 255, 0.9);
  color: var(--primary-green-dark);
}

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

.page-header h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.page-header .lead {
  opacity: 0.9;
  margin-bottom: 0;
}

.approach-card {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: transform 0.3s ease;
}

.approach-card:hover {
  transform: translateY(-5px);
}

.approach-icon {
  width: 60px;
  height: 60px;
  background-color: var(--bg-primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.approach-icon span {
  font-size: 1.5rem;
  color: var(--primary-green);
}

.value-item {
  background-color: var(--white);
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.value-item h5 {
  color: var(--primary-green);
  margin-bottom: 0.5rem;
}

.value-item p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

.contact-form-wrapper {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact-form .form-control {
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form .form-control:focus {
  border-color: var(--primary-green);
  box-shadow: 0 0 0 3px rgba(74, 124, 89, 0.1);
}

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

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

.contact-item h5 {
  color: var(--primary-green);
  margin-bottom: 0.5rem;
}

.contact-item p {
  margin-bottom: 0;
}

.thank-you-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  padding: 80px 0;
}

.thank-you-content {
  background-color: var(--bg-light);
  padding: 3rem;
  border-radius: 16px;
}

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

.thank-you-icon span {
  font-size: 2.5rem;
  color: var(--white);
}

.thank-you-content h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.legal-content h2 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.legal-content h2:first-of-type {
  margin-top: 0;
}

.legal-content h3 {
  font-size: 1.25rem;
  margin-top: 1.5rem;
}

.legal-content ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-content li {
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

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

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

.footer p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

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

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

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

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

.footer hr {
  border-color: rgba(255, 255, 255, 0.1);
  margin: 2rem 0;
}

.footer .small {
  color: rgba(255, 255, 255, 0.5);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--white);
  padding: 20px 0;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  display: none;
}

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

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

.cookie-banner a {
  color: var(--primary-green);
}

.alert-info {
  background-color: var(--bg-primary-light);
  border-color: var(--primary-green);
  color: var(--text-dark);
  border-radius: 10px;
}

.alert-info h4 {
  color: var(--primary-green);
}

.shadow {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1) !important;
}

.shadow-sm {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05) !important;
}

.rounded {
  border-radius: 12px !important;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

@media (max-width: 991.98px) {
  .hero-section {
    height: 60vh;
    min-height: 400px;
  }

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

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

  h2 {
    font-size: 1.75rem;
  }
}

@media (max-width: 767.98px) {
  .hero-section {
    height: 50vh;
    min-height: 350px;
  }

  .hero-content h1 {
    font-size: 1.75rem;
  }

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

  .section-padding {
    padding: 50px 0;
  }

  h2 {
    font-size: 1.5rem;
  }

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

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

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

  .contact-form-wrapper {
    padding: 1.5rem;
  }

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

  .footer {
    padding: 40px 0 20px;
  }
}
