/* DeadlineVault Legal Pages - Minimal Static CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #fafafa;
    padding: 0;
}

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

header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.app-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 18px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: white;
}

h1 {
    font-size: 28px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.subtitle {
    color: #666;
    font-size: 16px;
}

.lang-selector {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin: 30px 0;
}

.lang-btn {
    display: inline-block;
    padding: 14px 32px;
    background: #3b82f6;
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 500;
    font-size: 16px;
    transition: background 0.2s;
}

.lang-btn:hover {
    background: #2563eb;
}

.lang-btn.secondary {
    background: #f3f4f6;
    color: #1a1a1a;
}

.lang-btn.secondary:hover {
    background: #e5e7eb;
}

.nav-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 40px;
}

.nav-links a {
    color: #3b82f6;
    text-decoration: none;
    font-size: 14px;
}

.nav-links a:hover {
    text-decoration: underline;
}

/* Content pages */
.content {
    background: white;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.content h1 {
    font-size: 24px;
    margin-bottom: 24px;
}

.content h2 {
    font-size: 18px;
    margin-top: 28px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.content p {
    margin-bottom: 16px;
    color: #444;
}

.content ul {
    margin-bottom: 16px;
    padding-left: 24px;
}

.content li {
    margin-bottom: 8px;
    color: #444;
}

.content a {
    color: #3b82f6;
}

.back-link {
    display: inline-block;
    margin-bottom: 24px;
    color: #3b82f6;
    text-decoration: none;
    font-size: 14px;
}

.back-link:hover {
    text-decoration: underline;
}

.last-updated {
    margin-top: 32px;
    padding-top: 16px;
    border-top: 1px solid #e0e0e0;
    font-size: 13px;
    color: #888;
}

footer {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
    color: #888;
    font-size: 13px;
}
