:root {
  --primary-purple: #8b5cf6;
  --primary-purple-dark: #7c3aed;
  --primary-purple-light: #a78bfa;
  --accent-purple: #c4b5fd;
  --bg-light: #fafafa;
  --bg-white: #ffffff;
  --text-dark: #1f2937;
  --text-gray: #6b7280;
  --text-light: #9ca3af;
  --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);
  background-color: var(--bg-white);
  line-height: 1.6;
}

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

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

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

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

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

.hero-section {
  position: relative;
  height: 600px;
  margin-top: 56px;
  overflow: hidden;
}

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.9) 0%, rgba(124, 58, 237, 0.8) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--bg-white);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2rem;
}

.page-header {
  background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-purple-dark) 100%);
  color: var(--bg-white);
  padding: 8rem 0 4rem;
  margin-top: 56px;
}

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

.page-header p {
  font-size: 1.1rem;
  opacity: 0.95;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.lead {
  font-size: 1.15rem;
  color: var(--text-gray);
}

.btn-primary {
  background-color: var(--primary-purple);
  border-color: var(--primary-purple);
  padding: 0.75rem 2rem;
  font-weight: 600;
  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(139, 92, 246, 0.4);
}

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

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

.card {
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.icon-circle {
  width: 80px;
  height: 80px;
  background-color: var(--accent-purple);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto;
}

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

.benefits-list li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
  font-size: 1.05rem;
  color: var(--text-gray);
}

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

.coverage-item {
  padding: 1.5rem;
  background-color: var(--bg-white);
  border-radius: 8px;
  border-left: 4px solid var(--primary-purple);
}

.coverage-item h5 {
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

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

.topic-card {
  text-align: center;
  padding: 1.5rem;
}

.topic-card h4 {
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.topic-card p {
  color: var(--text-gray);
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  padding: 1rem;
  background-color: var(--bg-white);
  border-radius: 8px;
  border: 1px solid var(--border-color);
}

.benefit-icon {
  color: var(--primary-purple);
  font-weight: 700;
  font-size: 1.25rem;
  margin-right: 1rem;
  flex-shrink: 0;
}

.process-step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-color);
}

.process-step:last-child {
  border-bottom: none;
}

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

.step-content h5 {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.step-content p {
  color: var(--text-gray);
  margin-bottom: 0;
}

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

.testimonial-text {
  font-style: italic;
  color: var(--text-gray);
  margin-bottom: 1rem;
  line-height: 1.7;
}

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

.faq-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

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

.faq-item h5 {
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

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

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

.principle-item,
.offering-card {
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  background-color: var(--bg-white);
  border-radius: 8px;
  border-left: 4px solid var(--primary-purple);
}

.principle-item h5,
.offering-card h5 {
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.principle-item p,
.offering-card p {
  color: var(--text-gray);
  margin-bottom: 0;
}

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

.contact-info-card h5 {
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--primary-purple);
}

.contact-info-card p {
  color: var(--text-gray);
  margin-bottom: 0;
}

.contact-info-card a {
  color: var(--text-gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

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

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

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

.thank-you-section {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  padding: 6rem 0;
  margin-top: 56px;
}

.thank-you-icon {
  width: 100px;
  height: 100px;
  background-color: var(--primary-purple);
  color: var(--bg-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  margin: 0 auto;
  font-weight: 700;
}

.next-steps-card {
  background-color: var(--bg-light);
  padding: 2rem;
  border-radius: 12px;
  border: 2px solid var(--accent-purple);
}

.next-steps-card h5 {
  color: var(--primary-purple);
  font-weight: 600;
  margin-bottom: 1rem;
}

.next-steps-card ul {
  list-style: none;
  padding: 0;
}

.next-steps-card li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-gray);
}

.next-steps-card li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--primary-purple);
  font-weight: 700;
}

.legal-content {
  line-height: 1.8;
}

.legal-content h3 {
  color: var(--text-dark);
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.legal-content h5 {
  color: var(--text-dark);
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.legal-content p,
.legal-content li {
  color: var(--text-gray);
}

.legal-content ul {
  margin-bottom: 1.5rem;
}

.disclaimer-content {
  background-color: var(--bg-light);
  padding: 2rem;
  border-radius: 12px;
}

.footer {
  margin-top: 4rem;
}

.footer h5 {
  font-weight: 600;
  margin-bottom: 1rem;
}

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

.footer a:hover {
  color: var(--bg-white);
}

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

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

.cookie-banner p {
  margin-bottom: 0;
}

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

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

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

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

  .page-header {
    padding: 6rem 0 3rem;
  }

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

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

  .process-step {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .step-number {
    margin-right: 0;
    margin-bottom: 1rem;
  }
}

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

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

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