:root {
  --primary-purple: #7b2cbf;
  --secondary-purple: #9d4edd;
  --light-purple: #c77dff;
  --dark-purple: #5a189a;
  --accent-pink: #e0aaff;
  --white: #ffffff;
  --light-gray: #f8f9fa;
  --gray: #6c757d;
  --dark-gray: #343a40;
}

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

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

.navbar {
  transition: all 0.3s ease;
  padding: 1rem 0;
}

.brand-logo {
  font-size: 1.5rem;
  color: var(--primary-purple);
  font-weight: 700;
  letter-spacing: -0.5px;
}

.navbar-nav .nav-link {
  color: var(--dark-gray);
  font-weight: 500;
  margin-left: 1.5rem;
  transition: color 0.3s ease;
}

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

.hero-section {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, var(--light-purple) 0%, var(--accent-pink) 100%);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(157, 78, 221, 0.3), transparent 50%);
  pointer-events: none;
}

.hero-section .container {
  position: relative;
  z-index: 1;
}

.hero-text h1 {
  color: var(--white);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-text p {
  color: var(--white);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.section-gradient {
  background: linear-gradient(135deg, rgba(123, 44, 191, 0.05) 0%, rgba(224, 170, 255, 0.05) 100%);
}

.section-title {
  color: var(--primary-purple);
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-purple), var(--secondary-purple));
  border-radius: 2px;
}

.text-center .section-title::after {
  left: 50%;
  transform: translateX(-50%);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
  border: none;
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(123, 44, 191, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(123, 44, 191, 0.4);
  background: linear-gradient(135deg, var(--dark-purple), var(--primary-purple));
}

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

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

.card {
  border: none;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.card-hover:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(123, 44, 191, 0.15);
}

.card-img-top {
  height: 200px;
  object-fit: cover;
}

.card-title {
  color: var(--primary-purple);
  font-weight: 700;
}

.rounded-lg {
  border-radius: 12px;
}

.shadow-lg {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.info-box {
  background: linear-gradient(135deg, rgba(157, 78, 221, 0.1), rgba(224, 170, 255, 0.1));
  border-radius: 12px;
  border-left: 4px solid var(--primary-purple);
}

.info-card {
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.info-card:hover {
  box-shadow: 0 6px 20px rgba(123, 44, 191, 0.12);
}

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

.custom-list li {
  padding: 8px 0 8px 30px;
  position: relative;
}

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

.content-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.content-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.content-text h5 {
  color: var(--primary-purple);
  font-weight: 700;
  margin-bottom: 10px;
}

.habit-item {
  padding: 20px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.habit-item h5 {
  color: var(--primary-purple);
  font-weight: 700;
  margin-bottom: 10px;
}

.process-step {
  text-align: center;
  padding: 20px;
}

.step-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
  color: var(--white);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.disclaimer-box {
  background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
  color: var(--white);
  border-radius: 12px;
}

.disclaimer-box h5 {
  color: var(--white);
}

.faq-item {
  background: var(--white);
  padding: 25px;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.faq-question {
  color: var(--primary-purple);
  font-weight: 700;
  margin-bottom: 10px;
}

.faq-answer {
  color: var(--gray);
  margin-bottom: 0;
}

.testimonial-card {
  background: var(--white);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.testimonial-text {
  font-style: italic;
  color: var(--gray);
  margin-bottom: 15px;
}

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

.cta-section {
  background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 80% 50%, rgba(224, 170, 255, 0.2), transparent 50%);
  pointer-events: none;
}

.footer {
  background: var(--dark-gray);
  color: var(--white);
}

.footer-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--light-purple);
  text-decoration: none;
}

.page-header {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 70% 50%, rgba(224, 170, 255, 0.2), transparent 60%);
  pointer-events: none;
}

.page-header .container {
  position: relative;
  z-index: 1;
}

.contact-info-card {
  background: linear-gradient(135deg, rgba(157, 78, 221, 0.08), rgba(224, 170, 255, 0.08));
  padding: 20px;
  border-radius: 8px;
  border-left: 4px solid var(--primary-purple);
}

.contact-info-card h5 {
  color: var(--primary-purple);
}

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

.value-card {
  text-align: center;
  padding: 30px 20px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(123, 44, 191, 0.15);
}

.value-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
  color: var(--white);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.5rem;
}

.value-card h4 {
  color: var(--primary-purple);
}

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

.thank-you-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
  color: var(--white);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: 700;
}

.policy-content {
  background: var(--white);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.policy-content h2 {
  color: var(--primary-purple);
  font-weight: 700;
  margin-top: 30px;
}

.policy-content h4 {
  color: var(--secondary-purple);
  font-weight: 600;
}

.policy-content ul {
  margin-left: 20px;
}

.policy-content a {
  color: var(--primary-purple);
  font-weight: 600;
}

.policy-content a:hover {
  color: var(--secondary-purple);
  text-decoration: none;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--dark-purple), var(--primary-purple));
  color: var(--white);
  padding: 20px 0;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  display: none;
}

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

.cookie-banner a {
  color: var(--white);
}

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

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

  .navbar-nav .nav-link {
    margin-left: 0;
    padding: 8px 0;
  }

  .content-item {
    flex-direction: column;
  }

  .page-header {
    padding: 120px 0 60px;
  }

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

  .policy-content {
    padding: 20px;
  }
}
