:root {
  --bg: #ffffff;
  --bg-subtle: #f8fafc;
  --bg-dark: #1a1d29;
  --text: #001C55;
  --text-light: #ffffff;
  --text-secondary: #1E4080;
  --accent: #2563eb;
  --accent-darker: #1d4ed8;
  --border: rgba(0, 0, 0, 0.08);
  --border-dark: rgba(0, 0, 0, 0.1);
}

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

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


h1 {
  font-family: 'Chillax', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h2 {
  font-family: 'Chillax', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h3 {
  font-family: 'Chillax', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

p,
a {
  text-decoration: none;
  color: var(--text);
  font-size: 0.875rem;
  text-transform: none;
  line-height: 1.6;
  font-weight: 400;
}

p.secondary {
  color: var(--text-secondary);
}
