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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #2d3748;
  background-color: #ffffff;
}

.navbar {
  background-color: #ffffff;
  padding: 1rem 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.navbar-brand {
  font-size: 1.75rem;
  font-weight: 700;
  color: #2f855a;
}

.navbar-brand:hover {
  color: #276749;
}

.nav-link {
  color: #4a5568;
  font-weight: 500;
  margin-left: 1.5rem;
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #2f855a;
}

.hero {
  position: relative;
  height: 600px;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(47, 133, 90, 0.85), rgba(39, 103, 73, 0.75));
  display: flex;
  align-items: center;
}

.hero-content {
  text-align: center;
  color: #ffffff;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.btn-primary {
  display: inline-block;
  background-color: #ffffff;
  color: #2f855a;
  padding: 1rem 2.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid #ffffff;
}

.btn-primary:hover {
  background-color: transparent;
  color: #ffffff;
  text-decoration: none;
}

.btn-secondary {
  display: inline-block;
  background-color: transparent;
  color: #2f855a;
  padding: 1rem 2.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid #2f855a;
}

.btn-secondary:hover {
  background-color: #2f855a;
  color: #ffffff;
  text-decoration: none;
}

.section-light {
  padding: 5rem 0;
  background-color: #ffffff;
}

.section-dark {
  padding: 5rem 0;
  background-color: #f7fafc;
}

.section-cta {
  padding: 5rem 0;
  background: linear-gradient(135deg, #2f855a, #276749);
  color: #ffffff;
}

.section-cta h2 {
  color: #ffffff;
  margin-bottom: 1rem;
}

.section-cta p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 3rem;
  text-align: center;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 1rem;
}

.section-image {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-card,
.target-card,
.mission-card {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover,
.target-card:hover,
.mission-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.feature-card h3,
.target-card h3,
.mission-card h3 {
  color: #2f855a;
}

.consultation-list {
  list-style: none;
  padding: 0;
}

.consultation-list li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
  font-size: 1.1rem;
}

.consultation-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #2f855a;
  font-weight: bold;
  font-size: 1.3rem;
}

.process-step {
  text-align: center;
  padding: 2rem 1rem;
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #2f855a, #276749);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
}

.testimonial-card {
  background-color: #ffffff;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.testimonial-card p {
  font-style: italic;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.testimonial-author {
  font-weight: 600;
  color: #2f855a;
}

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

.faq-item {
  background-color: #ffffff;
  padding: 2rem;
  margin-bottom: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.faq-item h3 {
  color: #2f855a;
  margin-bottom: 1rem;
}

.page-hero {
  background: linear-gradient(135deg, #2f855a, #276749);
  color: #ffffff;
  padding: 4rem 0;
  text-align: center;
}

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

.page-hero p {
  font-size: 1.2rem;
}

.approach-content,
.principles-content {
  max-width: 1000px;
  margin: 0 auto;
}

.principle-item {
  background-color: #ffffff;
  padding: 2rem;
  margin-bottom: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.principle-item h3 {
  color: #2f855a;
}

.contact-info {
  background-color: #f7fafc;
  padding: 2rem;
  border-radius: 12px;
}

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

.contact-item h3 {
  color: #2f855a;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.form-control {
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  padding: 0.75rem;
  font-size: 1rem;
}

.form-control:focus {
  border-color: #2f855a;
  box-shadow: 0 0 0 3px rgba(47, 133, 90, 0.1);
}

.form-group label {
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 0.5rem;
}

.thank-you-section {
  padding: 6rem 0;
  background-color: #f7fafc;
}

.thank-you-content {
  max-width: 700px;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 4rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.thank-you-content h1 {
  color: #2f855a;
  margin-bottom: 2rem;
}

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

.thank-you-actions .btn-primary,
.thank-you-actions .btn-secondary {
  margin: 0.5rem;
}

.info-card {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.info-card h3 {
  color: #2f855a;
}

.link-simple {
  color: #2f855a;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.link-simple:hover {
  color: #276749;
  text-decoration: underline;
}

.legal-content {
  padding: 4rem 0;
  background-color: #ffffff;
}

.legal-content h2 {
  font-size: 2rem;
  text-align: left;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  color: #2f855a;
}

.legal-content h3 {
  font-size: 1.3rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #2d3748;
}

.legal-content p {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

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

.legal-content li {
  margin-bottom: 0.75rem;
  font-size: 1.05rem;
}

.footer {
  background-color: #2d3748;
  color: #ffffff;
  padding: 3rem 0 1rem;
}

.footer h4 {
  color: #ffffff;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.footer p {
  margin-bottom: 0.5rem;
  color: #cbd5e0;
}

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

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

.footer-links a {
  color: #cbd5e0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #2f855a;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #4a5568;
  text-align: center;
  color: #cbd5e0;
}

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #2d3748;
  color: #ffffff;
  padding: 1.5rem;
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.2);
  z-index: 9999;
}

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

.cookie-content p {
  margin: 0;
  flex: 1;
  margin-right: 2rem;
}

.cookie-content a {
  color: #2f855a;
  text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-accept {
  background-color: #2f855a;
  color: #ffffff;
}

.btn-accept:hover {
  background-color: #276749;
}

.btn-reject {
  background-color: #718096;
  color: #ffffff;
}

.btn-reject:hover {
  background-color: #4a5568;
}

@media (max-width: 768px) {
  .hero {
    height: 450px;
  }

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

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

  h2 {
    font-size: 2rem;
  }

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

  .section-light,
  .section-dark,
  .section-cta {
    padding: 3rem 0;
  }

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

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

  .cookie-content p {
    margin-right: 0;
    margin-bottom: 1rem;
  }

  .nav-link {
    margin-left: 0;
  }
}
