/*
  A modern CSS reset.
  This file removes default browser styles to ensure consistency.
*/

/* 1. Use a more intuitive box-sizing model on all elements. */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* 2. Remove default margin and padding from all elements. */
* {
    margin: 0;
    padding: 0;
}

/* 3. Set core body defaults for typography and text rendering. */
body {
    line-height: 1.5;
    /* A sensible default for readability */
    -webkit-font-smoothing: antialiased;
    /* Improve font rendering on macOS/iOS */
}

/* 4. Make images and other media easier to work with. */
img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

/* 5. Remove built-in form typography styles. */
input,
button,
textarea,
select {
    font: inherit;
    /* Elements will now inherit font styles from their parent */
}

/* 6. Remove default list styles. */
ul,
ol {
    list-style: none;
}

/* 7. Remove default link styles. */
a {
    text-decoration: none;
    color: inherit;
    /* Links will now inherit the color from their parent */
}