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

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text-main);
    line-height: 1.6;
    font-size: 1.05rem;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.1;
    color: var(--color-text-main);
    margin-bottom: var(--space-sm);
}

a {
    color: var(--color-text-main);
    text-decoration-color: var(--color-accent);
    text-underline-offset: 4px;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--color-accent);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    margin-bottom: var(--space-md);
    padding-left: var(--space-lg);
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: var(--space-xl);
    text-align: left;
}

th, td {
    padding: var(--space-sm);
    border-bottom: 1px solid var(--color-border);
}

th {
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
}
