/* CSS Reset - Normalize cross-browser styles */

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #F5F5F5;
    color: #1A1A1A;
    line-height: 1.6;
}

/* Typography Reset */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
    padding: 0;
}

p {
    margin: 0;
}

/* List Reset */
ul, ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

li {
    margin: 0;
    padding: 0;
}

/* Link Reset */
a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #FF0000;
}

/* Button Reset */
button {
    background: none;
    border: none;
    font: inherit;
    cursor: pointer;
    padding: 0;
    margin: 0;
}

/* Form Reset */
input,
textarea,
select {
    font: inherit;
    color: inherit;
    background: inherit;
    border: 1px solid #1A1A1A;
    padding: 0.5rem;
    margin: 0;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: #FF0000;
    box-shadow: inset 0 0 0 2px #FF0000;
}

/* Image Reset */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Blockquote Reset */
blockquote {
    margin: 0;
    padding: 0;
}

/* Table Reset */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

td, th {
    padding: 0;
}

/* Focus Visible Accessibility */
:focus-visible {
    outline: 2px solid #FF0000;
    outline-offset: 2px;
}

/* Selection Color */
::selection {
    background-color: #FF0000;
    color: #FFFFFF;
}

::-moz-selection {
    background-color: #FF0000;
    color: #FFFFFF;
}
