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

:root {
  --blue:       #1a6fb5;
  --blue-dark:  #134f85;
  --blue-light: #e8f2fb;
  --green:      #17a589;
  --green-light:#e6f7f4;
  --dark:       #1a1f2e;
  --gray:       #64748b;
  --gray-light: #f1f5f9;
  --white:      #ffffff;
  --border:     #e2e8f0;
  --radius:     12px;
  --shadow:     0 4px 24px rgba(26,111,181,.10);
  --shadow-md:  0 8px 40px rgba(26,111,181,.15);
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: clip;
  max-width: 100%;
}
