* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: system-ui, -apple-system, sans-serif;
    background: #ffffff;
    color: #333333;
    font-size: 14px;
    line-height: 1.8;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 24px;
}

.header {
    text-align: center;
    margin-bottom: 32px;
}

.header img {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    margin-bottom: 16px;
}

h1 {
    color: #1A9E5F;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.updated {
    color: #888888;
    font-size: 13px;
    margin-bottom: 32px;
}

h2 {
    color: #1A9E5F;
    font-size: 16px;
    font-weight: 700;
    margin-top: 24px;
    margin-bottom: 8px;
}

p,
ul {
    margin-bottom: 12px;
}

ul {
    padding-left: 20px;
}

li {
    margin-bottom: 4px;
}

a {
    color: #1A9E5F;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.footer {
    text-align: center;
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid #eeeeee;
    color: #888888;
    font-size: 12px;
}