/* qqder339-legal - Minimal Stylesheet */
/* Simple, clean design inspired by GitHub markdown rendering */

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang TC', 'Microsoft JhengHei', 'Noto Sans TC', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.container {
    padding: 20px 0;
}

/* Typography */
h1 {
    font-size: 2em;
    margin-bottom: 0.5em;
    padding-bottom: 0.3em;
    border-bottom: 1px solid #eee;
}

h2 {
    font-size: 1.5em;
    margin-top: 1.5em;
    margin-bottom: 0.5em;
}

h3 {
    font-size: 1.25em;
    margin-top: 1.2em;
    margin-bottom: 0.5em;
}

h4 {
    font-size: 1.1em;
    margin-top: 1em;
    margin-bottom: 0.5em;
}

p {
    margin-bottom: 1em;
}

/* Lists */
ul, ol {
    margin-left: 2em;
    margin-bottom: 1em;
}

li {
    margin-bottom: 0.3em;
}

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

a:hover {
    text-decoration: underline;
}

/* Horizontal rule */
hr {
    border: 0;
    border-top: 1px solid #eee;
    margin: 2em 0;
}

/* Footer */
footer {
    margin-top: 3em;
    padding-top: 1em;
    border-top: 1px solid #eee;
    text-align: center;
    color: #999;
    font-size: 0.9em;
}

/* Mobile responsiveness */
@media (max-width: 600px) {
    body {
        padding: 10px;
    }

    h1 {
        font-size: 1.75em;
    }

    h2 {
        font-size: 1.35em;
    }

    h3 {
        font-size: 1.15em;
    }

    ul, ol {
        margin-left: 1.5em;
    }
}
