/* Surface Development - Legal Pages Stylesheet */

/* Reset and base */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 17px;
    line-height: 1.7;
    color: #1a1a1a;
    background-color: #ffffff;
}

/* Layout */
.page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.header {
    border-bottom: 1px solid #e5e5e5;
    padding: 20px 0;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-name {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
}

.site-name:hover {
    color: #333333;
}

/* Main content */
.content {
    flex: 1;
    padding: 48px 0;
}

.page-title {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.2;
    margin: 0 0 8px 0;
    color: #1a1a1a;
}

.page-meta {
    font-size: 14px;
    color: #666666;
    margin: 0 0 40px 0;
}

/* Typography */
h2 {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
    margin: 40px 0 16px 0;
    color: #1a1a1a;
}

h2:first-of-type {
    margin-top: 0;
}

p {
    margin: 0 0 16px 0;
}

strong {
    font-weight: 600;
}

/* Lists */
ul {
    margin: 0 0 16px 0;
    padding-left: 24px;
}

li {
    margin-bottom: 8px;
}

li:last-child {
    margin-bottom: 0;
}

/* Links */
a {
    color: #2563eb;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Navigation list (index page) */
.nav-list {
    list-style: none;
    padding: 0;
    margin: 24px 0;
}

.nav-list li {
    margin-bottom: 12px;
    padding-left: 0;
}

.nav-list a {
    font-size: 17px;
}

/* Lead text */
.lead {
    font-size: 19px;
    color: #444444;
    margin-bottom: 32px;
}

/* Footer */
.footer {
    border-top: 1px solid #e5e5e5;
    padding: 24px 0;
    margin-top: auto;
}

.footer p {
    font-size: 14px;
    color: #666666;
    margin: 0;
}

.footer a {
    color: #666666;
}

.footer a:hover {
    color: #1a1a1a;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    body {
        font-size: 16px;
    }

    .content {
        padding: 32px 0;
    }

    .page-title {
        font-size: 26px;
    }

    h2 {
        font-size: 18px;
        margin-top: 32px;
    }

    .container {
        padding: 0 16px;
    }
}
