/* Minimal styles - Times New Roman, white background, black text */

body {
    font-family: 'Times New Roman', Times, serif;
    margin: 0;
    padding: 40px 20px;
    background-color: white;
    color: black;
}

.container {
    max-width: 650px;
    margin: 0 auto;
}

h1 {
    font-size: 28px;
    font-weight: normal;
    margin-bottom: 25px;
}

h2 {
    font-size: 20px;
    font-weight: normal;
    margin-top: 30px;
    margin-bottom: 20px;
}

p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}

a {
    color: black;
    text-decoration: underline;
}

a:hover {
    color: black;
    text-decoration: underline;
}

em {
    font-style: italic;
}

strong {
    font-weight: bold;
}

hr {
    border: none;
    border-top: 1px solid black;
    margin: 40px 0;
}

/* Mobile responsiveness */
@media (max-width: 600px) {
    body {
        padding: 30px 15px;
    }
    
    h1 {
        font-size: 24px;
    }
    
    h2 {
        font-size: 18px;
    }
}
