/* CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Remove default border and outline from inputs, buttons, etc. */
input, button, textarea, select {
    font: inherit;
    border: none;
    outline: none;
}

/* Remove default list styles */
ul, ol {
    list-style: none;
}

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

/* Ensure images don't overflow their containers */
img {
    max-width: 100%;
    height: auto;
}

/* Set default font and smooth scrolling */
html {
    font-family: 'Lato', sans-serif;
    scroll-behavior: smooth;
}

/* Remove all styles from tables */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* Remove default button styling */
button {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}
