body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  padding-top: 70px;
  color: #2d3748;
}

.navbar-brand {
  font-size: 1.5rem;
  color: #2f855a !important;
}

.nav-link {
  color: #4a5568 !important;
  font-weight: 500;
  transition: color 0.3s ease;
}

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

.btn-primary {
  background-color: #2f855a;
  border-color: #2f855a;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #276749;
  border-color: #276749;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(47, 133, 90, 0.3);
}

.btn-outline-primary {
  color: #2f855a;
  border-color: #2f855a;
  font-weight: 600;
}

.btn-outline-primary:hover {
  background-color: #2f855a;
  border-color: #2f855a;
}

.hero-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f7fafc 0%, #e6fffa 100%);
}

.hero-section h1 {
  color: #1a202c;
}

.hero-section .lead {
  color: #4a5568;
  line-height: 1.8;
}

.benefits-section {
  background-color: #ffffff;
}

.icon-circle {
  width: 80px;
  height: 80px;
  background-color: #e6fffa;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  color: #2f855a;
}

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

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

.product-card img {
  height: 250px;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
}

.education-section {
  background-color: #f7fafc;
}

.testimonials-section {
  background-color: #ffffff;
}

.cta-section {
  background: linear-gradient(135deg, #2f855a 0%, #276749 100%);
}

.page-header {
  padding: 100px 0 60px;
  background: linear-gradient(135deg, #f7fafc 0%, #e6fffa 100%);
  text-align: center;
}

.page-header h1 {
  color: #1a202c;
}

.page-header .lead {
  color: #4a5568;
}

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

.thank-you-icon {
  display: flex;
  justify-content: center;
}

.footer {
  background-color: #1a202c;
}

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

.footer a:hover {
  color: #2f855a !important;
}

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

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

.cookie-banner a {
  color: white;
  text-decoration: underline;
}

.cookie-banner .btn-light {
  background-color: white;
  color: #2f855a;
  border: none;
  font-weight: 600;
}

.cookie-banner .btn-outline-light {
  color: white;
  border-color: white;
  font-weight: 600;
}

.cookie-banner .btn-outline-light:hover {
  background-color: white;
  color: #2f855a;
}

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

.text-white-50 {
  color: rgba(255, 255, 255, 0.6) !important;
}

.bg-white-50 {
  background-color: rgba(255, 255, 255, 0.1) !important;
}

@media (max-width: 768px) {
  .hero-section {
    padding: 40px 0;
  }

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

  body {
    padding-top: 60px;
  }

  .product-card img {
    height: 200px;
  }
}
