:root {
  --primary-color: #2d5f3f;
  --primary-dark: #1e4029;
  --primary-light: #4a8c5e;
  --accent-color: #7cb342;
  --text-dark: #2c3e50;
  --text-light: #6c757d;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --border-color: #e0e0e0;
}

* {
  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;
  background-color: var(--bg-white);
}

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

.logo-text {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: -0.5px;
}

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

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

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

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

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

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

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

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

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

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

.benefits-section,
.approach-section,
.services-preview-section,
.testimonials-section {
  padding: 5rem 0;
}

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

.benefit-card,
.service-preview-card,
.testimonial-card {
  padding: 1.5rem;
  height: 100%;
  transition: transform 0.3s;
}

.benefit-card:hover,
.service-preview-card:hover {
  transform: translateY(-5px);
}

.benefit-card h3,
.service-preview-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.testimonial-card {
  background-color: var(--bg-light);
  border-left: 4px solid var(--accent-color);
  border-radius: 8px;
}

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

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

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

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

.approach-list li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
}

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

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

.cta-section h2 {
  color: white;
  font-size: 2.5rem;
  font-weight: 700;
}

.page-header {
  padding: 4rem 0 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e8f5e9 100%);
}

.page-header h1 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
}

.about-content-section,
.principles-section,
.location-section,
.services-detail-section,
.contact-section,
.info-section {
  padding: 5rem 0;
}

.value-card,
.principle-card,
.approach-card,
.info-card {
  padding: 2rem;
  background-color: var(--bg-light);
  border-radius: 8px;
  height: 100%;
  transition: transform 0.3s;
}

.value-card:hover,
.principle-card:hover,
.approach-card:hover,
.info-card:hover {
  transform: translateY(-5px);
}

.value-card h3,
.principle-card h3,
.approach-card h4,
.info-card h4 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

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

.about-list li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.about-list li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: bold;
  font-size: 1.5rem;
}

.service-features {
  list-style: none;
  padding-left: 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(--accent-color);
  font-weight: bold;
}

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

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

.contact-item h4 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

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

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

.contact-form .form-label {
  font-weight: 600;
  color: var(--text-dark);
}

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

.contact-form .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(45, 95, 63, 0.1);
}

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

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

.thank-you-icon {
  width: 120px;
  height: 120px;
}

.thank-you-actions {
  margin-top: 2rem;
}

.next-steps-section {
  padding: 4rem 0;
  background-color: var(--bg-light);
}

.next-step-card {
  padding: 2rem;
  background-color: white;
  border-radius: 8px;
  height: 100%;
}

.next-step-card h4 {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.legal-page {
  padding: 5rem 0;
}

.legal-page h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

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

.legal-content h2 {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

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

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

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

.footer {
  background-color: var(--text-dark);
  color: white;
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

.footer h5 {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

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

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

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

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

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

.copyright {
  color: rgba(255, 255, 255, 0.6);
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.cookie-content p {
  margin: 0;
  flex: 1;
  min-width: 250px;
}

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

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

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

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

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

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }

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

@media (max-width: 576px) {
  .hero-section,
  .benefits-section,
  .approach-section,
  .services-preview-section,
  .testimonials-section,
  .about-content-section,
  .services-detail-section,
  .contact-section {
    padding: 3rem 0;
  }

  .btn-lg {
    padding: 0.5rem 1.5rem;
  }
}
