:root {
  --primary-blue: #1b4976;
  --dark-blue: #001b47;
  --accent-green: #00c951;
  --text-dark: #364153;
  --text-light: #ffffff;
  --bg-light: #f7fbff;
  --max-width: 1920px;
  --content-width: 1140px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  background-color: #ffffff;
  color: var(--text-dark);
  overflow-x: hidden;
}

.main-wrapper {
  max-width: var(--max-width);
  margin: 0 auto;
  background-color: #ffffff;
  position: relative;
}

.container {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: #0262e6;
  color: white;
}

.btn-secondary {
  background-color: #00ddeb;
  color: white;
}

.text-center { text-align: center; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.w-full { width: 100%; }
.relative { position: relative; }
.absolute { position: absolute; }