* {
  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: #1a1a1a;
  background-color: #ffffff;
}

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

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

.logo-text {
  color: #2c5f2d;
  font-weight: 700;
  letter-spacing: -0.5px;
}

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

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

.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 56px;
}

.hero-image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.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);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #ffffff;
  padding: 2rem;
}

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

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.btn-primary-custom {
  background-color: #2c5f2d;
  color: #ffffff;
  border: none;
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-primary-custom:hover {
  background-color: #234a24;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(44, 95, 45, 0.3);
}

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

.bg-light {
  background-color: #f8f9fa;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #1a1a1a;
  line-height: 1.3;
}

.section-text {
  font-size: 1.125rem;
  color: #4a4a4a;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

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

.feature-card:hover,
.practice-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.feature-card h4,
.practice-card h4 {
  color: #2c5f2d;
  font-weight: 700;
  margin-bottom: 1rem;
}

.icon-block {
  padding: 2rem;
}

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

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

.testimonial-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  height: 100%;
  border-left: 4px solid #2c5f2d;
}

.testimonial-text {
  font-size: 1.05rem;
  color: #4a4a4a;
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.testimonial-author {
  font-weight: 600;
  color: #2c5f2d;
  margin-bottom: 0;
}

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

.faq-item {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e0e0e0;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.75rem;
}

.faq-answer {
  font-size: 1.05rem;
  color: #4a4a4a;
  line-height: 1.7;
}

.cta-section {
  background-color: #2c5f2d;
  color: #ffffff;
  padding: 5rem 0;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-text {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.cta-section .btn-primary-custom {
  background-color: #ffffff;
  color: #2c5f2d;
}

.cta-section .btn-primary-custom:hover {
  background-color: #f0f0f0;
  color: #234a24;
}

.footer {
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 3rem 0 1rem;
  margin-top: 0;
}

.footer-heading {
  font-weight: 700;
  margin-bottom: 1rem;
  color: #ffffff;
}

.footer-text {
  color: #cccccc;
  font-size: 0.95rem;
  line-height: 1.7;
}

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

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

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

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

.footer-divider {
  border-top: 1px solid #333333;
  margin: 2rem 0 1rem;
}

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

.footer-bottom a {
  color: #cccccc;
  text-decoration: none;
  margin: 0 0.5rem;
}

.footer-bottom a:hover {
  color: #2c5f2d;
}

.footer-copyright {
  color: #888888;
  font-size: 0.875rem;
  margin-bottom: 0;
}

.page-header {
  background-color: #2c5f2d;
  color: #ffffff;
  padding: 8rem 0 4rem;
  text-align: center;
  margin-top: 56px;
}

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

.page-subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
}

.contact-info {
  background-color: #f8f9fa;
  padding: 2rem;
  border-radius: 8px;
  margin-top: 2rem;
}

.contact-form-container {
  background-color: #f8f9fa;
  padding: 2rem;
  border-radius: 8px;
}

.form-control {
  border: 1px solid #d0d0d0;
  padding: 0.75rem;
  border-radius: 4px;
}

.form-control:focus {
  border-color: #2c5f2d;
  box-shadow: 0 0 0 0.2rem rgba(44, 95, 45, 0.15);
}

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 1.5rem 0;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  display: none;
}

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

.cookie-text {
  margin: 0;
  font-size: 0.95rem;
}

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

.btn-outline-secondary {
  color: #ffffff;
  border-color: #ffffff;
}

.btn-outline-secondary:hover {
  background-color: #ffffff;
  color: #1a1a1a;
}

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

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

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

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

  .page-header {
    padding: 6rem 0 3rem;
  }

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

  .nav-link {
    margin-left: 0;
    margin-top: 0.5rem;
  }
}

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

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

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

  .section-text {
    font-size: 1rem;
  }

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

  .cta-text {
    font-size: 1.125rem;
  }

  .cookie-consent .text-right {
    text-align: left !important;
    margin-top: 1rem;
  }
}
