:root {
  --primary-color: #7c3aed;
  --primary-dark: #6d28d9;
  --secondary-color: #a78bfa;
  --text-dark: #1f2937;
  --text-light: #6b7280;
  --bg-light: #f9fafb;
  --border-color: #e5e7eb;
}

* {
  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;
  padding-top: 76px;
}

.navbar {
  transition: all 0.3s ease;
}

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

.brand-logo {
  color: var(--primary-color);
}

.nav-link {
  font-weight: 500;
  color: var(--text-dark) !important;
  transition: color 0.3s ease;
}

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

.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 {
  border-color: var(--primary-color);
  color: var(--primary-color);
  transition: all 0.3s ease;
}

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

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

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

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

.page-header {
  padding: 100px 0 60px;
  background: linear-gradient(135deg, #f9fafb 0%, #e0e7ff 100%);
  text-align: center;
}

.page-header h1 {
  font-weight: 700;
  color: var(--text-dark);
}

.benefits-section {
  background-color: white;
}

.benefit-card {
  background-color: white;
  border: 2px solid var(--border-color);
  border-radius: 12px;
  transition: all 0.3s ease;
  height: 100%;
}

.benefit-card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.15);
  transform: translateY(-5px);
}

.benefit-icon {
  font-size: 3rem;
  color: var(--primary-color);
}

.product-card {
  background-color: white;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
}

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

.product-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.product-info h3 {
  color: var(--text-dark);
  font-weight: 600;
}

.testimonial-card {
  background-color: white;
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.cta-section {
  background-color: var(--primary-color);
}

.footer {
  background-color: #1f2937;
}

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

.footer a:hover {
  color: var(--primary-color) !important;
}

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--text-dark);
  color: white;
  padding: 20px 0;
  z-index: 9999;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
  display: none;
}

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

.cookie-consent a {
  color: white;
  text-decoration: underline;
}

.contact-info-card {
  background-color: var(--bg-light);
  border-radius: 8px;
  border: 1px solid var(--border-color);
}

.contact-info-card a {
  color: var(--primary-color);
  text-decoration: none;
}

.contact-info-card a:hover {
  text-decoration: underline;
}

.faq-card {
  background-color: white;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  height: 100%;
}

.thank-you-section {
  padding: 120px 0;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.thank-you-icon {
  width: 100px;
  height: 100px;
  background-color: #10b981;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  margin: 0 auto;
  font-weight: bold;
}

.info-box {
  background-color: var(--bg-light);
  border-radius: 8px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.info-box:hover {
  border-color: var(--primary-color);
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.1);
}

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

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

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

  .display-4 {
    font-size: 2.5rem;
  }

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

@media (max-width: 576px) {
  body {
    padding-top: 70px;
  }

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

  .display-4 {
    font-size: 2rem;
  }

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