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

html {
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
}

body {
  font-size: 16px;
  line-height: 1.6;
  background-color: #fff;
  color: #333;
  margin: 0;
  padding: 0;
}

/* Remove list styles */
/* ul,
ol,
li {
  all: initial;
} */

/* Remove default link styles */
a {
  color: inherit;
  text-decoration: none;
}

/* Reset form elements */
input,
button,
select,
textarea {
  font: inherit;
  border: none;
  outline: none;
  background: none;
}

button {
  cursor: pointer;
}

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

/* Headings */
h1 {
  font-weight: 600;
  line-height: 1.25;
}

/* Tables */
table {
  border-collapse: collapse;
  width: 100%;
}

/* ----------- Utilities ----------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
