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

* {
  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;
  overflow-x: hidden;
}

.navbar-brand {
  font-size: 1.5rem;
  letter-spacing: -0.5px;
}

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

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

.hero-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-section h1 {
  color: var(--text-dark);
}

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

.hero-section img {
  max-height: 500px;
  object-fit: cover;
}

.why-section,
.benefits-section,
.services-overview-section,
.audience-section,
.testimonials-section,
.about-content,
.services-section,
.contact-section,
.thank-you-section,
.next-steps-section,
.contact-info-section,
.values-section,
.location-section,
.consultation-process,
.faq-section,
.legal-content {
  padding: 60px 0;
}

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

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

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

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
}

.benefit-item {
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.benefit-item:hover {
  transform: translateX(5px);
}

.benefit-icon {
  font-size: 2rem;
  font-weight: bold;
}

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

.audience-card {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.audience-card h4 {
  border-bottom: 3px solid var(--primary-green);
  padding-bottom: 10px;
  margin-bottom: 20px;
}

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

.audience-card li {
  padding: 8px 0;
  padding-left: 25px;
  position: relative;
}

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

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

.footer {
  padding: 50px 0 20px;
}

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

.footer a:hover {
  opacity: 0.8;
}

.page-header {
  padding: 60px 0 40px;
}

.contact-info-box {
  background: var(--bg-light);
  padding: 30px;
  border-radius: 8px;
  height: fit-content;
}

.contact-item h5 {
  margin-bottom: 10px;
}

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

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

.faq-item {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.success-icon {
  font-size: 80px;
}

.step-icon {
  font-size: 48px;
}

.thank-you-section {
  padding: 100px 0;
}

.legal-content {
  padding: 40px 0;
}

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

.legal-content h3 {
  color: var(--dark-green);
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.legal-content p {
  margin-bottom: 15px;
  line-height: 1.8;
}

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

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

.sidebar-nav {
  background: var(--bg-light);
  padding: 20px;
  border-radius: 8px;
  top: 100px;
}

.sidebar-nav h5 {
  color: var(--primary-green);
  margin-bottom: 15px;
}

.sidebar-nav ul li {
  margin-bottom: 10px;
}

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

.sidebar-nav a:hover {
  color: var(--primary-green);
}

.value-item {
  padding: 20px;
}

.value-item h4 {
  margin-bottom: 15px;
}

.process-step {
  padding: 20px;
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--text-dark);
  color: white;
  padding: 20px 0;
  z-index: 9999;
  display: none;
}

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

.cookie-banner p {
  margin: 0;
}

.cookie-banner a {
  color: white;
}

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

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

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

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

  .icon-circle {
    width: 60px;
    height: 60px;
  }

  .why-section,
  .benefits-section,
  .services-overview-section,
  .audience-section,
  .testimonials-section,
  .about-content,
  .services-section,
  .contact-section,
  .thank-you-section,
  .next-steps-section,
  .contact-info-section,
  .values-section,
  .location-section,
  .consultation-process,
  .faq-section {
    padding: 40px 0;
  }

  .cta-section {
    padding: 50px 0;
  }

  .service-card img {
    height: 200px;
  }
}

@media (max-width: 576px) {
  .cookie-banner .btn {
    margin-top: 10px;
    width: 100%;
  }

  .benefit-item {
    flex-direction: column;
    text-align: center;
  }

  .benefit-icon {
    margin-bottom: 10px;
  }
}
