:root {
  --purple-primary: #8b5cf6;
  --purple-dark: #6d28d9;
  --purple-light: #a78bfa;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
}

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

.text-purple {
  color: var(--purple-primary);
}

.bg-purple {
  background-color: var(--purple-primary);
}

.btn-purple {
  background-color: var(--purple-primary);
  border-color: var(--purple-primary);
  color: white;
  transition: all 0.3s ease;
}

.btn-purple:hover {
  background-color: var(--purple-dark);
  border-color: var(--purple-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.4);
}

.btn-outline-purple {
  border: 2px solid var(--purple-primary);
  color: var(--purple-primary);
  background-color: transparent;
  transition: all 0.3s ease;
}

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

.hero-section {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.85) 0%, rgba(109, 40, 217, 0.85) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 0;
}

.section-title {
  color: var(--gray-900);
  font-weight: 700;
  margin-bottom: 20px;
}

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

.icon-text {
  font-size: 32px;
  font-weight: 700;
  color: white;
}

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

.benefit-list li {
  padding: 10px 0;
  padding-left: 30px;
  position: relative;
}

.benefit-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--purple-primary);
  font-weight: bold;
  font-size: 20px;
}

.topic-card {
  padding: 20px;
  transition: transform 0.3s ease;
}

.topic-card:hover {
  transform: translateY(-10px);
}

.step-card {
  padding: 30px 20px;
}

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

.cta-section {
  background: linear-gradient(135deg, var(--purple-primary) 0%, var(--purple-dark) 100%);
}

.principle-card {
  padding: 30px 20px;
}

.principle-icon {
  width: 80px;
  height: 80px;
  background-color: var(--purple-light);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  font-weight: 700;
  margin: 0 auto;
}

.disclaimer-box {
  background-color: var(--gray-50);
  border-left: 4px solid var(--purple-primary);
  padding: 25px;
  border-radius: 8px;
}

.contact-info-card {
  background-color: var(--gray-50);
  padding: 25px;
  border-radius: 8px;
  border-left: 4px solid var(--purple-primary);
}

.min-vh-75 {
  min-height: 75vh;
}

.thank-you-icon {
  margin-bottom: 30px;
}

.checkmark-circle {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--purple-light) 0%, var(--purple-primary) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  animation: scaleIn 0.5s ease-out;
}

.checkmark {
  font-size: 60px;
  color: white;
  font-weight: bold;
}

@keyframes scaleIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.policy-content h2 {
  color: var(--gray-900);
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 28px;
}

.policy-content h3 {
  color: var(--gray-800);
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 15px;
  font-size: 22px;
}

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

.policy-content ul {
  margin-bottom: 20px;
  line-height: 1.8;
}

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

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

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

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

  .hero-content {
    padding: 60px 0;
  }

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