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

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

/* Remove default button styling */
button {
    background: none;
    border: none;
    cursor: pointer;
    font: inherit;
}

/* Remove default input styling */
input, textarea, select {
    font: inherit;
    border: none;
    outline: none;
}

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

/* Improve image handling */
img {
    max-width: 100%;
    height: auto;
}

/* Improve table styling */
table {
    border-collapse: collapse;
    border-spacing: 0;
}
