:root {
  --primary-color: #7c3aed;
  --primary-dark: #6d28d9;
  --primary-light: #a78bfa;
  --secondary-color: #f3f4f6;
  --text-dark: #1f2937;
  --text-light: #6b7280;
  --white: #ffffff;
  --black: #000000;
  --border-color: #e5e7eb;
  --success-color: #10b981;
  --warning-color: #f59e0b;
}

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

.brand-balance {
  color: var(--text-dark);
}

.brand-subtitle {
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 400;
}

.navbar {
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.5rem;
}

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

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

.nav-link.active {
  color: var(--primary-color);
}

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

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}

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

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

.hero-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
}

.section-why,
.section-help,
.section-approach,
.section-results,
.section-testimonials,
.section-concerns,
.section-why-us,
.section-content,
.section-process,
.section-contact-info,
.section-faq {
  padding: 5rem 0;
}

.section-cta {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: var(--white);
}

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

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

.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.1);
}

.help-item,
.result-item {
  padding: 1rem 0;
}

.approach-card {
  padding: 2rem;
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.approach-card:hover {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

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

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

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

.testimonial-author {
  display: flex;
  flex-direction: column;
}

.testimonial-author strong {
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.testimonial-author span {
  color: var(--text-light);
  font-size: 0.9rem;
}

.concern-card,
.why-us-card,
.value-card {
  padding: 1.5rem;
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: all 0.3s ease;
}

.concern-card:hover,
.why-us-card:hover,
.value-card:hover {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

.why-us-icon {
  color: var(--primary-color);
}

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

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

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

.footer-links a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

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

.footer-legal li {
  margin-left: 1.5rem;
}

.footer-legal a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

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

.footer-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 2rem 0 1.5rem;
}

.page-header {
  padding: 4rem 0 3rem;
  background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
}

.page-header-legal {
  padding: 3rem 0 2rem;
  background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
}

.service-badge {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

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

.service-features li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

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

.service-divider {
  margin: 4rem 0;
  border-top: 2px solid var(--border-color);
}

.process-step {
  padding: 2rem;
}

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

.contact-form .form-control {
  padding: 0.75rem;
  border: 2px solid var(--border-color);
  border-radius: 4px;
  transition: border-color 0.3s ease;
}

.contact-form .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(124, 58, 237, 0.1);
}

.contact-info-card {
  padding: 1.5rem;
  background-color: var(--secondary-color);
  border-radius: 8px;
  border-left: 4px solid var(--primary-color);
}

.form-note {
  color: var(--text-light);
}

.next-steps-list {
  list-style: none;
  padding-left: 0;
}

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

.next-steps-list li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: 700;
}

.faq-item {
  padding: 1.5rem;
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.thank-you-section {
  padding: 5rem 0;
  min-height: 60vh;
}

.thank-you-icon {
  color: var(--success-color);
}

.thank-you-actions {
  margin-top: 2rem;
}

.resource-link {
  display: block;
  padding: 1.5rem;
  background-color: var(--secondary-color);
  border-radius: 8px;
  text-decoration: none;
  color: var(--text-dark);
  transition: all 0.3s ease;
}

.resource-link:hover {
  background-color: var(--primary-light);
  color: var(--white);
  text-decoration: none;
  transform: translateY(-3px);
}

.section-legal-content {
  padding: 3rem 0;
}

.legal-section {
  margin-bottom: 3rem;
}

.legal-section h2 {
  color: var(--text-dark);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--primary-color);
}

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

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

.legal-section li {
  margin-bottom: 0.5rem;
}

.contact-box {
  padding: 1.5rem;
  background-color: var(--secondary-color);
  border-radius: 8px;
  border-left: 4px solid var(--primary-color);
  margin-top: 1rem;
}

.contact-detail {
  padding: 1rem 0;
}

.benefit-list {
  list-style: none;
  padding-left: 0;
}

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

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(31, 41, 55, 0.95);
  color: var(--white);
  padding: 1.5rem 0;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  display: none;
}

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

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

.cookie-link:hover {
  color: var(--white);
}

@media (max-width: 991px) {
  .navbar-collapse {
    margin-top: 1rem;
  }

  .nav-link {
    padding: 0.75rem 0;
  }

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

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

  .footer-legal {
    justify-content: flex-start;
    margin-top: 1rem;
  }

  .footer-legal li {
    margin-left: 0;
    margin-right: 1.5rem;
  }
}

@media (max-width: 767px) {
  .section-title {
    font-size: 1.75rem;
  }

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

  .approach-number,
  .process-number {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
}
