:root {
  --primary-green: #2d6a4f;
  --secondary-green: #40916c;
  --light-green: #52b788;
  --accent-green: #74c69d;
  --bg-light: #f8f9fa;
  --text-dark: #212529;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-dark);
  padding-top: 70px;
}

.navbar {
  transition: all 0.3s ease;
}

.navbar-brand {
  font-size: 1.5rem;
  color: var(--primary-green) !important;
}

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

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

.hero-section {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
  color: white;
  padding: 100px 0;
  min-height: 500px;
  display: flex;
  align-items: center;
}

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

.hero-section p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.btn-primary {
  background-color: white;
  color: var(--primary-green);
  border: none;
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--bg-light);
  color: var(--primary-green);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-success {
  background-color: var(--primary-green);
  border: none;
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.btn-success:hover {
  background-color: var(--secondary-green);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.section-padding {
  padding: 80px 0;
}

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

.section-subtitle {
  font-size: 1.1rem;
  color: #6c757d;
  margin-bottom: 3rem;
}

.feature-card {
  background: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  border: 2px solid transparent;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.12);
  border-color: var(--accent-green);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--light-green), var(--accent-green));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
  color: white;
}

.feature-card h3 {
  color: var(--primary-green);
  font-weight: 600;
  margin-bottom: 15px;
}

.service-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}

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

.service-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.service-card-body {
  padding: 25px;
}

.service-card h3 {
  color: var(--primary-green);
  font-weight: 600;
  margin-bottom: 15px;
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary-green);
  margin-top: 15px;
}

.stats-section {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
  color: white;
}

.stat-item {
  text-align: center;
  padding: 20px;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 1.1rem;
  opacity: 0.9;
}

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

.testimonial-text {
  font-style: italic;
  margin-bottom: 20px;
  color: #495057;
}

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

.cta-section {
  background: linear-gradient(135deg, var(--light-green) 0%, var(--accent-green) 100%);
  color: white;
  padding: 80px 0;
}

.cta-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.footer-section {
  background-color: var(--primary-green);
  color: white;
  padding: 50px 0 20px;
}

.footer-section h5 {
  margin-bottom: 20px;
}

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

.footer-section a:hover {
  opacity: 0.8;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.page-header {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
  color: white;
  padding: 120px 0 80px;
  text-align: center;
}

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

.page-header-small {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
  color: white;
  padding: 100px 0 60px;
  text-align: center;
}

.page-header-small h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.team-member {
  text-align: center;
  margin-bottom: 30px;
}

.team-member img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 5px solid var(--accent-green);
}

.team-member h4 {
  color: var(--primary-green);
  font-weight: 600;
  margin-bottom: 5px;
}

.team-member p {
  color: #6c757d;
}

.contact-form {
  background: white;
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.form-control {
  border: 2px solid #e9ecef;
  padding: 12px;
  border-radius: 5px;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--accent-green);
  box-shadow: 0 0 0 0.2rem rgba(116, 198, 157, 0.25);
}

.contact-info {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
  color: white;
  border-radius: 10px;
  padding: 40px;
}

.contact-info h3 {
  margin-bottom: 30px;
}

.contact-item {
  margin-bottom: 25px;
}

.contact-item strong {
  display: block;
  margin-bottom: 5px;
  font-size: 1.1rem;
}

.legal-content {
  background: white;
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.legal-content h2 {
  color: var(--primary-green);
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 15px;
}

.legal-content h2:first-of-type {
  margin-top: 0;
}

.legal-content ul {
  margin-bottom: 20px;
}

.legal-content li {
  margin-bottom: 8px;
}

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

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

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

.cookie-banner .btn-light {
  background-color: white;
  color: var(--primary-green);
  border: none;
  font-weight: 600;
}

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

.cookie-banner .btn-outline-light:hover {
  background-color: white;
  color: var(--primary-green);
}

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

.thank-you-card {
  background: white;
  border-radius: 10px;
  padding: 60px 40px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.thank-you-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--light-green), var(--accent-green));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  font-size: 2.5rem;
  color: white;
}

.thank-you-card h1 {
  color: var(--primary-green);
  font-weight: 700;
  margin-bottom: 20px;
}

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

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

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

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

  .stat-number {
    font-size: 2rem;
  }
}
