:root {
  --primary-green: #28a745;
  --primary-green-dark: #218838;
  --primary-green-light: #e8f5e9;
  --text-dark: #212529;
  --text-muted: #6c757d;
  --bg-light: #f8f9fa;
  --white: #ffffff;
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo-text {
  font-size: 1.5rem;
  letter-spacing: -0.5px;
}

.navbar {
  padding: 1rem 0;
}

.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 {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e8f5e9 100%);
}

.page-header {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
  margin-bottom: 0;
}

.page-header-small {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
  margin-bottom: 0;
}

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

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

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

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

.icon-text {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-green);
}

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

.benefits-list li {
  padding-left: 30px;
  position: relative;
}

.benefits-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-green);
  font-weight: bold;
  font-size: 1.2rem;
}

.service-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

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

.service-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-content {
  padding: 1.5rem;
}

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

.audience-card {
  padding: 1.5rem;
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
  height: 100%;
}

.audience-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

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

.testimonial-text {
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.testimonial-author {
  border-top: 2px solid var(--primary-green-light);
  padding-top: 1rem;
}

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

.footer {
  background-color: #2c3e50;
  color: var(--white);
  padding: 60px 0 20px;
}

.footer h5,
.footer h6 {
  color: var(--white);
}

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

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

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

.footer-links a:hover {
  color: var(--white);
}

.footer-legal {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-legal li {
  margin: 0 10px;
}

.footer-legal a {
  color: #bdc3c7;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: var(--white);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(44, 62, 80, 0.95);
  color: var(--white);
  padding: 20px 0;
  z-index: 9999;
  display: none;
}

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

.cookie-banner p {
  margin: 0;
}

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

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

.value-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.approach-item {
  padding: 1rem;
  background: var(--bg-light);
  border-radius: 6px;
}

.contact-info-card {
  padding: 1.5rem;
  background: var(--bg-light);
  border-radius: 8px;
}

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

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

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

.service-features {
  list-style: none;
  padding: 0;
}

.service-features li {
  padding: 0.5rem 0 0.5rem 30px;
  position: relative;
}

.service-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-green);
  font-weight: bold;
  font-size: 1.2rem;
}

.process-step {
  padding: 1.5rem;
}

.process-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 1.5rem;
  font-weight: 700;
}

.thank-you-content {
  padding: 3rem 0;
}

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

.success-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: var(--primary-green);
  display: flex;
  align-items: center;
  justify-content: center;
}

.checkmark {
  color: var(--white);
  font-size: 3rem;
  font-weight: bold;
}

.thank-you-message {
  border-left: 4px solid var(--primary-green);
}

.step-card {
  padding: 1.5rem;
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
  height: 100%;
}

.step-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 1.25rem;
  font-weight: 700;
}

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

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

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

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

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

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

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

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

  .footer-legal {
    flex-direction: column;
    text-align: center;
  }

  .footer-legal li {
    margin: 0.5rem 0;
  }

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

@media (max-width: 576px) {
  .display-4 {
    font-size: 2rem;
  }

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