:root {
  --primary-color: #7c3aed;
  --primary-dark: #6d28d9;
  --primary-light: #a78bfa;
  --secondary-color: #1f2937;
  --secondary-light: #374151;
  --text-dark: #111827;
  --text-light: #6b7280;
  --bg-light: #f9fafb;
  --bg-white: #ffffff;
  --border-color: #e5e7eb;
  --success-color: #10b981;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px 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;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-light);
}

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

a:hover {
  color: var(--primary-dark);
  text-decoration: none;
}

.navbar {
  padding: 1rem 0;
  box-shadow: var(--shadow-sm);
  background-color: var(--bg-white);
}

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

.logo-text {
  color: var(--primary-color);
  font-weight: 700;
}

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

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

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

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
}

.btn-outline-secondary {
  border-color: var(--text-light);
  color: var(--text-light);
  font-weight: 600;
  padding: 0.5rem 1.5rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.btn-outline-secondary:hover {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  color: white;
}

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

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.page-hero {
  padding: 120px 0 60px;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
  color: white;
}

.page-hero-small {
  padding: 100px 0 40px;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
  color: white;
}

.page-title {
  color: white;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.page-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
}

.section-light {
  padding: 80px 0;
  background-color: var(--bg-light);
}

.section-white {
  padding: 80px 0;
  background-color: var(--bg-white);
}

.section-dark {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-light) 100%);
  color: white;
}

.section-dark h2,
.section-dark h3,
.section-dark h4,
.section-dark h5 {
  color: white;
}

.section-dark p,
.section-dark li {
  color: rgba(255, 255, 255, 0.9);
}

.section-title {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

.card {
  border: none;
  border-radius: 0.75rem;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.problem-card {
  height: 100%;
  background: white;
}

.problem-card .card-title {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

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

.problem-list li {
  padding: 0.75rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-light);
}

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

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

.benefit-list li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
  color: rgba(255, 255, 255, 0.9);
}

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

.process-card {
  padding: 2rem;
  background: white;
  border-radius: 0.75rem;
  box-shadow: var(--shadow-md);
  height: 100%;
}

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

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

.methodology-item h5 {
  color: var(--primary-color);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.outcome-card {
  padding: 2rem;
  background: white;
  border-radius: 0.75rem;
  box-shadow: var(--shadow-md);
  height: 100%;
  text-align: center;
}

.outcome-card h5 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

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

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

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

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

.cta-title {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.cta-subtext {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.value-card {
  padding: 2rem;
  background: white;
  border-radius: 0.75rem;
  box-shadow: var(--shadow-md);
  height: 100%;
  text-align: center;
}

.value-card h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

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

.approach-list li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-color);
}

.approach-list li:last-child {
  border-bottom: none;
}

.disclaimer-box {
  padding: 2rem;
  background: white;
  border-radius: 0.75rem;
  border-left: 4px solid var(--primary-color);
  box-shadow: var(--shadow-md);
}

.contact-info-box {
  padding: 2rem;
  background: var(--bg-light);
  border-radius: 0.75rem;
}

.service-card {
  background: white;
  border-radius: 0.75rem;
  box-shadow: var(--shadow-md);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.service-content {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-content h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

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

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

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

.expectation-card {
  padding: 2rem;
  background: white;
  border-radius: 0.75rem;
  box-shadow: var(--shadow-md);
}

.expectation-card h5 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

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

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

.contact-item h5 {
  color: var(--secondary-color);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.contact-item p {
  color: var(--text-light);
  margin-bottom: 0;
}

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

.contact-form-wrapper {
  padding: 2.5rem;
  background: white;
  border-radius: 0.75rem;
  box-shadow: var(--shadow-lg);
}

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

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

.form-check-input {
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.25rem;
}

.form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.form-check-label {
  margin-left: 0.5rem;
}

.faq-item {
  padding: 2rem;
  background: white;
  border-radius: 0.75rem;
  box-shadow: var(--shadow-md);
  margin-bottom: 1.5rem;
}

.faq-item h5 {
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

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

.thank-you-content {
  padding: 3rem;
  background: white;
  border-radius: 1rem;
  box-shadow: var(--shadow-lg);
}

.success-icon {
  display: inline-block;
}

.thank-you-title {
  color: var(--secondary-color);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.thank-you-message {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.step-card {
  padding: 1.5rem;
  background: var(--bg-light);
  border-radius: 0.75rem;
  text-align: center;
}

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

.resource-card {
  padding: 2rem;
  background: white;
  border-radius: 0.75rem;
  box-shadow: var(--shadow-md);
  text-align: center;
}

.resource-card h5 {
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.legal-content {
  padding: 60px 0 80px;
}

.legal-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--secondary-color);
}

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

.legal-content ul,
.legal-content ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.legal-content li {
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

.legal-content table {
  margin-bottom: 2rem;
}

.legal-content .alert {
  border-left: 4px solid #fbbf24;
  background-color: #fffbeb;
  border-radius: 0.5rem;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

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

.footer-title {
  color: white;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.footer p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

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

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

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

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

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

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

.cookie-banner p {
  margin-bottom: 0;
  color: var(--text-dark);
}

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

@media (max-width: 991px) {
  .hero-title {
    font-size: 2.25rem;
  }

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

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

  .cookie-banner .col-lg-4 {
    text-align: left !important;
    margin-top: 1rem;
  }
}

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

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

  .hero-subtitle {
    font-size: 1.1rem;
  }

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

  .section-light,
  .section-white,
  .section-dark {
    padding: 60px 0;
  }

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

  .cta-title {
    font-size: 1.75rem;
  }

  .thank-you-content {
    padding: 2rem;
  }

  .thank-you-title {
    font-size: 1.75rem;
  }
}
