/* Reset and base styles */
* {
    box-sizing: border-box;
}

html {
    font-size: 18px;
    line-height: 1.6;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Merriweather', 'PT Serif', Georgia, serif;
    color: #333;
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Container and layout */
.container {
    max-width: 42rem;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

/* Typography */
h1 {
    font-family: 'Lato', 'Helvetica Neue', sans-serif;
    font-weight: 900;
    font-size: 2.5rem;
    line-height: 1.25;
    margin: 0 0 2rem 0;
    color: #0076df;
}

h2 {
    font-family: 'Lato', 'Helvetica Neue', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1.25;
    margin: 2.5rem 0 1rem 0;
    color: #333;
}

p {
    margin: 0 0 1rem 0;
    font-size: 1rem;
    line-height: 1.6;
}

/* Links */
a {
    color: #0066cc;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Sections */
section {
    margin-bottom: 2rem;
}

/* Publications list */
ol {
    padding-left: 1.5rem;
    margin: 0;
}

ol li {
    margin-bottom: 1.25rem;
    line-height: 1.5;
}

ol li strong {
    font-weight: 700;
}

/* Responsive design */
@media (max-width: 42rem) {
    html {
        font-size: 16px;
    }
    
    .container {
        padding: 1rem 0.75rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.25rem;
    }
}

/* Print styles */
@media print {
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    a {
        color: #333;
        text-decoration: underline;
    }
    
    h1, h2 {
        color: #333;
    }
}