:root {
  --brand: #8576FF;
  --brand-dark: #6d5cff;
  --light-bg: #f8f9ff;
  --card-radius: 1rem;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: var(--light-bg);
  color: #333;
}

.navbar {
  background: white;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

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

header.hero {
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: white;
  text-align: center;
  padding: 4rem 1.5rem;
  border-bottom-left-radius: 2rem;
  border-bottom-right-radius: 2rem;
}

header.hero h1 {
  font-weight: 700;
  font-size: 2.8rem;
}

header.hero p {
  font-size: 1.2rem;
  opacity: 0.95;
}

section {
  margin: 3rem 0;
}

.card-section {
  background: white;
  border-radius: var(--card-radius);
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card-section:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.card-section h2 {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  color: var(--brand);
}

.list-group-item {
  border: none;
  padding-left: 0;
  padding-right: 0;
  margin-bottom: 0.6rem;
  background: transparent;
}

.list-group-item strong {
  color: var(--brand-dark);
}

.process-step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.process-step span {
  background: var(--brand);
  color: white;
  font-weight: bold;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  margin-right: 1rem;
  flex-shrink: 0;
}

.cta-buttons {
  margin: 2.5rem 0;
}

.cta-buttons .btn {
  padding: 0.8rem 2rem;
  border-radius: 2rem;
  font-weight: 500;
  margin: 0.4rem;
}

.btn-primary {
  background: var(--brand);
  border: none;
}
.btn-primary:hover {
  background: var(--brand-dark);
}

footer {
  background: white;
  padding: 1.5rem;
  margin-top: 3rem;
  border-top: 1px solid #eee;
  text-align: center;
  font-size: 0.9rem;
  color: #666;
}