/* Reset default styles */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

/* Remove default link styles */
a {
  text-decoration: none;
  color: inherit;
}

/* Remove list styles */
ul, ol {
  list-style: none;
}

/* Remove default table borders and spacing */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Set image and other media elements to be responsive */
img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Remove form input and button default styles */
input, button, textarea, select {
  border: none;
  outline: none;
  background: transparent;
}

/* Normalize button focus */
button:focus {
  outline: none;
}

/* Optional: Set a base font size and color */
body {
  font-size: 16px;
  color: #333;
}