/* CSS Reset */

/* Box sizing border-box */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin and padding */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
  padding: 0;
}

/* Remove list styles (bullets/numbers) */
ul,
ol {
  list-style: none;
}

/* Remove underline from links */
a {
  text-decoration: none;
}

/* Remove outline on focused elements */
button,
input,
textarea,
select {
  outline: none;
}

/* Ensure consistent vertical alignment */
img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  vertical-align: middle;
}

/* Set base font size and line height */
body {
  font-size: 16px;
  line-height: 1.5;
}

/* Optional: Reset some commonly overridden elements */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

p {
  margin-bottom: 1em;
}

button {
  cursor: pointer;
}

/* Add any additional custom styles or overrides below this line */
