:root {
  --primary-green: #28a745;
  --dark-green: #1e7e34;
  --light-green: #d4edda;
  --text-dark: #212529;
  --text-muted: #6c757d;
  --bg-light: #f8f9fa;
  --white: #ffffff;
  --border-color: #dee2e6;
}

* {
  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;
  background-color: var(--white);
}

.brand-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-green);
}

.navbar {
  padding: 1rem 0;
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--text-dark);
  margin-left: 1.5rem;
  transition: color 0.3s ease;
}

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

.btn-success {
  background-color: var(--primary-green);
  border-color: var(--primary-green);
  font-weight: 600;
  padding: 0.75rem 2rem;
  transition: all 0.3s ease;
}

.btn-success:hover {
  background-color: var(--dark-green);
  border-color: var(--dark-green);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.btn-outline-success {
  border-color: var(--primary-green);
  color: var(--primary-green);
  font-weight: 600;
  padding: 0.75rem 2rem;
  transition: all 0.3s ease;
}

.btn-outline-success:hover {
  background-color: var(--primary-green);
  border-color: var(--primary-green);
  color: var(--white);
  transform: translateY(-2px);
}

.hero-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, rgba(40, 167, 69, 0.05) 0%, rgba(255, 255, 255, 1) 100%);
}

.hero-section h1 {
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.hero-section .lead {
  color: var(--text-muted);
  font-size: 1.25rem;
}

.hero-section img {
  border-radius: 10px;
}

.why-section,
.benefits-section,
.services-overview-section,
.audience-section,
.testimonials-section,
.services-section,
.about-content,
.contact-section,
.faq-section,
.consultation-process,
.advantages-section {
  padding: 4rem 0;
}

.why-section h2,
.benefits-section h2,
.services-overview-section h2,
.audience-section h2,
.testimonials-section h2,
.services-section h2,
.about-content h2,
.contact-section h2,
.faq-section h2,
.consultation-process h2,
.advantages-section h2 {
  font-weight: 700;
  color: var(--text-dark);
}

.icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--light-green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  color: var(--primary-green);
}

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

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

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

.benefits-list li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
  color: var(--text-dark);
}

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

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

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

.service-category-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.service-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

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

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

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

.audience-list li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.audience-list li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary-green);
  font-size: 1.5rem;
  line-height: 1.2;
}

.testimonial-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.stars {
  color: #ffc107;
  font-size: 1.2rem;
}

.testimonial-author {
  font-weight: 600;
  color: var(--text-muted);
  margin-top: 1rem;
}

.cta-section {
  padding: 4rem 0;
  background-color: var(--primary-green);
}

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

.cta-section .lead {
  color: rgba(255, 255, 255, 0.9);
}

.page-header {
  padding: 3rem 0;
  background: linear-gradient(135deg, rgba(40, 167, 69, 0.1) 0%, rgba(255, 255, 255, 1) 100%);
}

.value-item {
  margin-bottom: 1.5rem;
}

.value-item h5 {
  color: var(--primary-green);
  font-weight: 600;
}

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

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

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

.service-card-body {
  padding: 2rem;
}

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

.service-features {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
}

.service-features li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-dark);
}

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

.process-step {
  text-align: center;
  padding: 2rem 1rem;
}

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

.contact-info-card {
  background: var(--bg-light);
  padding: 1.5rem;
  border-radius: 10px;
  border-left: 4px solid var(--primary-green);
}

.contact-info-card h5 {
  color: var(--primary-green);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.contact-info-card a {
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.faq-item {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 10px;
  border: 1px solid var(--border-color);
}

.faq-item h5 {
  color: var(--primary-green);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

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

.custom-control-input:checked ~ .custom-control-label::before {
  background-color: var(--primary-green);
  border-color: var(--primary-green);
}

.thank-you-section {
  padding: 5rem 0;
}

.thank-you-card {
  background: var(--white);
  padding: 3rem;
  border-radius: 10px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
}

.success-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto;
}

.next-steps ul {
  text-align: left;
  list-style-position: inside;
}

.next-steps li {
  padding: 0.5rem 0;
}

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

.info-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

.info-card a {
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

.info-card a:hover {
  color: var(--primary-green);
}

.legal-page {
  padding: 4rem 0;
}

.legal-content {
  line-height: 1.8;
}

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

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

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

.legal-content a {
  color: var(--primary-green);
  text-decoration: none;
  transition: color 0.3s ease;
}

.legal-content a:hover {
  color: var(--dark-green);
  text-decoration: underline;
}

.footer {
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--white);
  font-weight: 600;
  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(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding-top: 1rem;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  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(33, 37, 41, 0.95);
  color: var(--white);
  padding: 1rem 0;
  z-index: 9999;
  display: none;
}

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

.cookie-banner p {
  margin: 0;
  font-size: 0.9rem;
}

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

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

  .hero-section h1 {
    font-size: 2rem;
  }

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

  .why-section,
  .benefits-section,
  .services-overview-section,
  .audience-section,
  .testimonials-section,
  .services-section,
  .about-content,
  .contact-section,
  .faq-section,
  .consultation-process,
  .advantages-section {
    padding: 3rem 0;
  }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .footer-legal {
    justify-content: center;
  }

  .cookie-banner {
    padding: 1.5rem 0;
  }

  .thank-you-card {
    padding: 2rem 1rem;
  }

  .btn-lg {
    padding: 0.6rem 1.5rem;
    font-size: 1rem;
  }
}

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

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

  .process-number {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
}
