:root {
  --primary-green: #4caf50;
  --primary-green-dark: #388e3c;
  --primary-green-light: #81c784;
  --text-dark: #212529;
  --text-medium: #495057;
  --text-light: #6c757d;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --border-color: #dee2e6;
  --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 4px 16px rgba(0, 0, 0, 0.12);
}

* {
  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;
}

.navbar-brand img {
  height: 40px;
}

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

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
  color: var(--primary-green);
}

.hero-section {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: relative;
  z-index: 2;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
  width: 100%;
  padding: 80px 0;
}

.hero-content {
  color: var(--bg-white);
  max-width: 600px;
}

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

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

.btn-primary {
  background-color: var(--primary-green);
  border-color: var(--primary-green);
  padding: 12px 32px;
  font-weight: 600;
  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: var(--shadow-lg);
}

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

.page-header {
  background-color: var(--bg-light);
  padding: 60px 0;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
}

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

.page-header .lead {
  color: var(--text-medium);
  font-size: 1.125rem;
}

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

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.card-img-top {
  height: 200px;
  object-fit: cover;
}

.consultation-step {
  padding: 2rem 1rem;
}

.step-number {
  width: 60px;
  height: 60px;
  background-color: var(--primary-green);
  color: var(--bg-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

.disclaimer-box {
  background-color: #fff3cd;
  border: 2px solid #ffc107;
  border-radius: 8px;
  padding: 2rem;
}

.testimonial-card {
  background-color: var(--bg-white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: var(--shadow);
  height: 100%;
}

.testimonial-card p {
  font-style: italic;
  margin-bottom: 1rem;
  color: var(--text-medium);
}

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

.faq-item {
  background-color: var(--bg-white);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.faq-item h3 {
  color: var(--primary-green);
  margin-bottom: 0.75rem;
}

.cta-section {
  background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
  color: var(--bg-white);
}

.cta-section h2 {
  color: var(--bg-white);
}

.cta-section .btn-primary {
  background-color: var(--bg-white);
  color: var(--primary-green);
  border-color: var(--bg-white);
}

.cta-section .btn-primary:hover {
  background-color: var(--bg-light);
  border-color: var(--bg-light);
}

.footer {
  background-color: var(--text-dark);
  color: var(--bg-white);
  padding: 60px 0 20px;
}

.footer h3 {
  color: var(--bg-white);
  margin-bottom: 1rem;
}

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.footer-legal {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  margin: 0 0.75rem;
  transition: color 0.3s ease;
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--text-dark);
  color: var(--bg-white);
  padding: 1.5rem 0;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.cookie-banner.hidden {
  display: none;
}

.cookie-banner a {
  color: var(--primary-green-light);
}

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

.contact-item h3 {
  color: var(--primary-green);
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.contact-item a {
  color: var(--primary-green);
  text-decoration: none;
}

.contact-item a:hover {
  text-decoration: underline;
}

.form-control:focus {
  border-color: var(--primary-green);
  box-shadow: 0 0 0 0.2rem rgba(76, 175, 80, 0.25);
}

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

.thank-you-box {
  background-color: var(--bg-white);
  padding: 3rem;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
}

.legal-content h2 {
  color: var(--primary-green);
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.75rem;
}

.legal-content h3 {
  color: var(--text-dark);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

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

.legal-content a {
  color: var(--primary-green);
}

.approach-card {
  padding: 2rem 1rem;
}

.approach-card h3 {
  color: var(--primary-green);
  margin-bottom: 1rem;
}

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

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

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

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

@media (max-width: 576px) {
  .hero-section {
    min-height: 500px;
  }

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

  .cookie-banner .btn {
    width: 100%;
    margin-top: 0.5rem;
  }
}
