:root {
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --primary-light: #eff6ff;
  --text-main: #0f172a;
  --text-muted: #64748b;
  --bg-surface: #f8fafc;
  --border-color: #e2e8f0;
  --radius-lg: 20px;
  --radius-md: 12px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-soft: 0 20px 40px -10px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 25px 50px -12px rgba(37, 99, 235, 0.15);
}

body {
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text-muted);
  background-color: #fff;
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6, strong {
  color: var(--text-main);
  letter-spacing: -0.025em;
}

a {
  text-decoration: none;
  color: var(--primary);
  transition: all 0.2s ease;
}

a:hover {
  color: var(--primary-dark);
}

.bg-surface {
  background: var(--bg-surface);
}

.btn {
  padding: 0.6rem 1.2rem;
  font-weight: 600;
  border-radius: 999px;
}

.btn-primary {
  background-color: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.2);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.3);
}

.btn-outline-custom {
  background: #fff;
  border: 1px solid var(--border-color);
  color: var(--text-main);
}

.btn-outline-custom:hover {
  border-color: var(--text-muted);
  background: var(--bg-surface);
  color: var(--text-main);
}

.hero-section {
  position: relative;
  overflow: hidden;
  padding-top:6rem !important;
}

.card-modern {
  background: #fff;
  border: 1px solid rgba(226, 232, 240, 0.85);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.card-modern:hover {
  box-shadow: var(--shadow-hover);
}

.badge-soft {
  background: rgba(37, 99, 235, 0.1);
  color: var(--primary-dark);
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 999px;
  padding: 0.4rem 0.8rem;
  font-weight: 600;
}

.list-check {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.list-check li {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: 0.8rem;
}

.list-check li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.05rem;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.12);
  color: var(--primary-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
}

.breadcrumb a {
  color: var(--text-muted);
}

.breadcrumb .active {
  color: var(--text-main);
}

.py-5 {
  padding-top: 6rem !important;
  padding-bottom: 3rem !important;
}