:root {
    --color-bg-deep: #0A192F;
    --color-accent: #F7C143;
    --color-text-light: #F8F9FA;
    --color-text-dark: #0A192F;
    --color-border: #334155;
    --color-highlight: #2D9C8C;

    --header-bg: rgba(10, 25, 47, 0.95);
    --header-height: 80px;
}

html, body {
    margin: 0;
    padding: 0;
}

html {
    scroll-padding-top: 80px; 
    overflow: auto;
}

body {
    background-color: var(--color-bg-deep);
    color: var(--color-text-light);
    font-family: 'Lato', sans-serif;
    color: var(--color-text-light);
    line-height: 1.7;
}

h1, h2, h3 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}

p {
    font-size: clamp(1rem, 0.95rem + 0.25vw, 1.15rem); 
    margin-bottom: 1.5rem;
    max-width: 75ch;
}

ul, ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

ul {
    list-style-type: disc;
}

ul li, ol li {
    margin-bottom: 0.6rem;
    font-size: clamp(1rem, 0.95rem + 0.25vw, 1.15rem);
}