:root {
  --primary-purple: #7c3aed;
  --primary-purple-dark: #6d28d9;
  --primary-purple-light: #a78bfa;
  --neutral-white: #ffffff;
  --neutral-light: #f9fafb;
  --neutral-gray: #e5e7eb;
  --neutral-dark: #374151;
  --neutral-black: #1f2937;
  --accent-purple: #8b5cf6;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: var(--neutral-dark);
  background-color: var(--neutral-white);
}

.site-header {
  background: var(--neutral-white);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.navbar-brand:hover {
  color: var(--primary-purple-dark);
}

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

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

.hero-section {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--primary-purple-light) 0%, var(--primary-purple) 100%);
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 4rem 0;
  color: var(--neutral-white);
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content .lead {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

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

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

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

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

.content-section {
  padding: 4rem 0;
}

.content-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--neutral-black);
  margin-bottom: 1.5rem;
}

.content-section h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--neutral-black);
  margin-bottom: 1rem;
}

.section-intro {
  font-size: 1.125rem;
  color: var(--neutral-dark);
  margin-bottom: 2rem;
}

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

.feature-card {
  padding: 1.5rem;
  background: var(--neutral-white);
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.bg-light .feature-card {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(124, 58, 237, 0.1);
}

.feature-card img {
  border-radius: 8px;
}

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

.feature-list li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
}

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

.disclaimer-box {
  background: linear-gradient(135deg, var(--primary-purple-light) 0%, var(--accent-purple) 100%);
  color: var(--neutral-white);
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.disclaimer-box p {
  margin-bottom: 0.5rem;
}

.disclaimer-box strong {
  font-weight: 700;
}

.testimonial-card {
  background: var(--neutral-white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  margin-bottom: 1.5rem;
  height: 100%;
}

.bg-light .testimonial-card {
  background: var(--neutral-white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

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

.faq-section {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--neutral-gray);
}

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

.faq-item h3 {
  color: var(--primary-purple);
  margin-bottom: 0.75rem;
}

.cta-section {
  background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-purple-dark) 100%);
  color: var(--neutral-white);
  padding: 4rem 0;
  text-align: center;
}

.cta-section h2 {
  color: var(--neutral-white);
  margin-bottom: 1rem;
}

.cta-section .lead {
  margin-bottom: 2rem;
}

.cta-section .btn-primary {
  background-color: var(--neutral-white);
  color: var(--primary-purple);
  border-color: var(--neutral-white);
}

.cta-section .btn-primary:hover {
  background-color: var(--neutral-light);
  border-color: var(--neutral-light);
  color: var(--primary-purple-dark);
}

.site-footer {
  background: var(--neutral-black);
  color: var(--neutral-light);
  padding: 3rem 0 1rem;
}

.site-footer h4 {
  color: var(--neutral-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: var(--neutral-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.copyright {
  color: var(--neutral-gray);
  margin: 0;
  font-size: 0.875rem;
}

.page-header {
  background: linear-gradient(135deg, var(--primary-purple-light) 0%, var(--primary-purple) 100%);
  color: var(--neutral-white);
  padding: 4rem 0;
  text-align: center;
}

.page-header h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.page-header .lead {
  font-size: 1.25rem;
}

.transparency-box {
  background: var(--neutral-light);
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid var(--primary-purple);
}

.transparency-box h3 {
  color: var(--primary-purple);
  margin-top: 1.5rem;
}

.transparency-box h3:first-child {
  margin-top: 0;
}

.value-card {
  background: var(--neutral-white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  margin-bottom: 1.5rem;
  height: 100%;
}

.bg-light .value-card {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.contact-info {
  background: var(--neutral-light);
  padding: 2rem;
  border-radius: 12px;
}

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

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-item h3 {
  color: var(--primary-purple);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

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

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

.thank-you-section {
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 0;
}

.thank-you-content {
  text-align: center;
  max-width: 600px;
}

.thank-you-content h1 {
  color: var(--primary-purple);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

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

.thank-you-actions .btn {
  margin: 0.5rem;
}

.policy-content {
  max-width: 900px;
  margin: 0 auto;
}

.policy-content h2 {
  color: var(--primary-purple);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.policy-content h3 {
  color: var(--neutral-black);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

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

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

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.cookie-content p {
  margin: 0;
  flex: 1;
  min-width: 250px;
}

.cookie-content a {
  color: var(--primary-purple-light);
}

.cookie-buttons {
  display: flex;
  gap: 0.5rem;
}

.cookie-buttons .btn {
  padding: 0.5rem 1.5rem;
}

.cookie-buttons .btn-secondary {
  background-color: var(--neutral-dark);
  border-color: var(--neutral-dark);
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }

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

  .content-section h2 {
    font-size: 2rem;
  }

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

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .hero-section {
    min-height: 400px;
  }

  .content-section {
    padding: 2rem 0;
  }
}
