:root {
    --primary-color: #36618e;
    --text-color: #333;
    --bg-color: #f8f9ff;
    --card-bg: #ffffff;
    --accent-color: #eef2f7;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    margin: 0;
    padding: 0;
}

.container {
    max-width: 800px;
    margin: 40px auto;
    padding: 40px;
    background: var(--card-bg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border-radius: 16px;
}

h1 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 2rem;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 8px;
}

p, li {
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.last-updated {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.highlight-box {
    background-color: var(--accent-color);
    padding: 20px;
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
    margin: 20px 0;
}

ul {
    padding-left: 20px;
}

a {
    color: var(--primary-color);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

footer {
    text-align: center;
    margin-top: 40px;
    padding-bottom: 40px;
    color: #888;
    font-size: 0.9rem;
}

.th-text {
    color: #666;
    font-size: 0.95rem;
    margin-top: -10px;
    margin-bottom: 24px;
    font-style: italic;
}

h2.th-text {
    margin-top: -15px;
    border-bottom: none;
    font-size: 1.2rem;
    padding-bottom: 0;
    margin-bottom: 16px;
    font-style: normal;
}

@media (max-width: 600px) {
    .container {
        margin: 0;
        border-radius: 0;
        padding: 24px;
    }
    h1 { font-size: 2rem; }
}
