/* GitHub Pages Legal Documents Stylesheet */

* {
    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.8;
    color: #333;
    background: linear-gradient(135deg, #0d1f1f 0%, #1a3333 100%);
    min-height: 100vh;
    padding: 20px;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

a {
    color: #3dd9b8;
    text-decoration: none;
}

a:hover {
    color: #2ba894;
    text-decoration: underline;
}

h1 {
    color: #3dd9b8;
    margin-bottom: 20px;
    font-size: 2.5em;
    border-bottom: 3px solid #3dd9b8;
    padding-bottom: 10px;
}

h2 {
    color: #2ba894;
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.8em;
}

h3 {
    color: #1e7868;
    margin-top: 25px;
    margin-bottom: 12px;
    font-size: 1.4em;
}

p {
    margin-bottom: 15px;
}

ul, ol {
    margin-left: 30px;
    margin-bottom: 15px;
}

li {
    margin-bottom: 8px;
}

code {
    background: #f4f4f4;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
}

pre {
    background: #f4f4f4;
    padding: 15px;
    border-radius: 8px;
    overflow-x: auto;
    margin-bottom: 15px;
}

blockquote {
    border-left: 4px solid #3dd9b8;
    padding-left: 20px;
    margin-left: 0;
    color: #666;
    font-style: italic;
}

.back-link {
    display: inline-block;
    margin-bottom: 20px;
    color: #3dd9b8;
    font-weight: 500;
}

.back-link:hover {
    color: #2ba894;
}

footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
    text-align: center;
    color: #999;
    font-size: 0.9em;
}

@media (max-width: 768px) {
    .container {
        padding: 20px;
    }
    
    h1 {
        font-size: 2em;
    }
    
    h2 {
        font-size: 1.5em;
    }
}
