/* Legal Page Styles - imports base.css for reset and variables */

body {
    background: var(--color-bg);
    font-family: var(--font-family);
    color: var(--color-text-primary);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.6;
}

/* Typography */
.terms h1 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.terms h2 {
    font-size: 24px;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 10px;
}

.terms p {
    margin: 10px 0;
}

.terms ul {
    padding-left: 20px;
}

/* Footer */
footer {
    text-align: center;
    padding: 1em;
    font-size: 1.2em;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

footer a {
    color: inherit;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.2s;
}

footer a:hover {
    color: #666;
}