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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
    padding: 20px;
}

.content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Typography */
h1 {
    color: #2c3e50;
    font-size: 2.2em;
    margin-bottom: 10px;
    font-weight: 600;
}

h2 {
    color: #34495e;
    font-size: 1.4em;
    margin-top: 32px;
    margin-bottom: 16px;
    font-weight: 600;
}

p {
    margin-bottom: 16px;
}

ul {
    margin: 16px 0;
    padding-left: 24px;
}

li {
    margin-bottom: 8px;
}

/* Links */
a {
    color: #3498db;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Horizontal rule */
hr {
    border: none;
    height: 1px;
    background-color: #e1e8ed;
    margin: 24px 0;
}

/* Bold text */
b {
    font-weight: 600;
}

/* Date styling */
.content>p:first-of-type {
    font-style: italic;
    color: #666;
    margin-bottom: 24px;
}

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

    .content {
        padding: 24px;
    }

    h1 {
        font-size: 1.8em;
    }

    h2 {
        font-size: 1.2em;
    }
}