/* Reset margins and box sizing */
* {
  box-sizing: border-box;
}

body,
h1, h2, h3, h4, h5, h6,
p, ul, ol, figure,
blockquote, dl, dd {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #222;
  background-color: #f9f9f9;
  -webkit-font-smoothing: antialiased;
}

a {
  color: #0073aa;
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: #005077;
  text-decoration: underline;
}

h1, h2, h3 {
  font-weight: 600;
  line-height: 1.3;
  color: #111;
}

h1 {
  font-size: 24px;
}

h2 {
  font-size: 20px;
}

h3 {
  font-size: 17px;
}

p {
  margin-bottom: 16px;
}

ul {
  list-style-type: disc;
  padding-left: 20px;
  margin-bottom: 16px;
}

ol {
  list-style-type: decimal;
  padding-left: 20px;
  margin-bottom: 16px;
}

input,
select,
textarea {
  font-family: inherit;
  font-size: 14px;
  color: #333;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
}

.text-muted {
  color: #777;
}

.text-danger {
  color: #e74c3c;
}

.text-success {
  color: #2ecc71;
}
