/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #000;
    background-color: #fff;
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
}

/* Container */
.container {
    padding-top: 20px;
}

/* Typography */
h1 {
    font-size: 2.5em;
    font-weight: 700;
    margin-bottom: 0.2em;
    letter-spacing: 0.02em;
}

h2 {
    font-size: 1.5em;
    font-weight: 400;
    margin-bottom: 2em;
    color: #333;
}

h3 {
    font-size: 1.2em;
    font-weight: 600;
    margin-top: 2em;
    margin-bottom: 0.8em;
}

/* First h3 should have less top margin */
.container > h3:first-of-type {
    margin-top: 1em;
}

p {
    margin-bottom: 1em;
    text-align: justify;
}

/* Lists */
ul {
    list-style: none;
    margin-bottom: 1em;
    padding-left: 0;
}

li {
    margin-bottom: 0.5em;
    padding-left: 0;
}

li strong {
    font-weight: 600;
}

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

a:hover {
    color: #004499;
    text-decoration: underline;
}

/* PDF Link */
.pdf-link {
    margin: 1.5em 0;
}

.pdf-link a {
    display: inline-block;
    padding: 0;
    font-size: 1em;
}

/* Alternative Version Link */
.alt-version {
    /* font-style: italic; */
    margin-top: 1.5em;
}

/* Strong/Bold Text */
strong {
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding: 15px;
    }

    h1 {
        font-size: 2em;
    }

    h2 {
        font-size: 1.3em;
    }

    h3 {
        font-size: 1.1em;
    }

    p {
        text-align: left;
    }
}

@media (max-width: 480px) {
    body {
        padding: 10px;
    }

    h1 {
        font-size: 1.8em;
    }

    h2 {
        font-size: 1.2em;
    }
}