:root {
  --primary-green: #4a9b7f;
  --primary-green-light: #6bb99d;
  --primary-green-dark: #3d8169;
  --success-light: #e8f5f1;
  --text-dark: #2c3e50;
  --text-muted: #6c757d;
  --bg-light: #f8f9fa;
  --white: #ffffff;
  --border-color: #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-dark);
  line-height: 1.6;
  padding-top: 70px;
}

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

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
}

.brand-name {
  color: var(--primary-green);
}

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

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

.hero {
  position: relative;
  height: 600px;
  overflow: hidden;
  margin-bottom: 0;
}

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  text-align: center;
  color: var(--white);
  max-width: 800px;
  padding: 2rem;
}

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

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.section-padding {
  padding: 5rem 0;
}

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

.page-header {
  background-color: var(--success-light);
  padding: 4rem 0 3rem;
  margin-bottom: 0;
}

.page-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.page-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
}

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

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

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

.program-card {
  height: 100%;
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 12px;
}

.program-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.program-card .card-title {
  color: var(--primary-green);
  font-weight: 700;
  margin-bottom: 1rem;
}

.program-card ul li {
  padding: 0.5rem 0;
  color: var(--text-muted);
}

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

.testimonial-text {
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.8;
}

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

.faq-item {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

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

.footer {
  padding: 3rem 0 1.5rem;
  border-top: 1px solid var(--border-color);
  margin-top: 3rem;
}

.footer h5 {
  color: var(--text-dark);
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--white);
  box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.1);
  padding: 1.5rem 0;
  z-index: 9999;
  display: none;
}

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

.cookie-link {
  color: var(--primary-green);
  text-decoration: underline;
}

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

.contact-form .form-control:focus {
  border-color: var(--primary-green);
  box-shadow: 0 0 0 0.2rem rgba(74, 155, 127, 0.25);
}

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

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

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

.approach-item h4 {
  color: var(--primary-green);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

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

.values-list li {
  padding: 1rem;
  margin-bottom: 0.75rem;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.values-list li strong {
  color: var(--primary-green);
}

.legal-content {
  font-size: 1rem;
  line-height: 1.8;
}

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

.legal-content h3 {
  color: var(--text-dark);
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.35rem;
}

.legal-content p {
  margin-bottom: 1rem;
}

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

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

.legal-content table {
  margin: 1.5rem 0;
}

.img-fluid.rounded.shadow {
  border-radius: 12px;
}

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

  .hero-title {
    font-size: 2rem;
  }

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

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

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

  .section-padding {
    padding: 3rem 0;
  }

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

  .navbar-brand {
    font-size: 1.25rem;
  }
}

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

  .btn-lg {
    padding: 0.6rem 1.5rem;
    font-size: 1rem;
  }
}
