/* Legal Pages Stylesheet */

:root {
    --primary-bg: #0b0b0b;
    --text-color: #d6d4ce;
    --dim-text: rgba(214, 212, 206, 0.6);
    --accent-color: #4A90E2;
    --max-width: 800px;
}

body {
    background-color: var(--primary-bg);
    color: var(--text-color);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

.legal-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 80px 24px 120px;
}

/* Typography */
h1 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.last-updated {
    color: var(--dim-text);
    font-size: 14px;
    margin-bottom: 60px;
}

h2 {
    font-size: 24px;
    font-weight: 600;
    margin-top: 48px;
    margin-bottom: 16px;
    color: #fff;
}

p {
    margin-bottom: 24px;
    font-size: 16px;
}

ul {
    margin-bottom: 24px;
    padding-left: 20px;
}

li {
    margin-bottom: 12px;
}

li strong {
    color: #fff;
}

/* Header & Navigation (Matching Site) */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 70px;
    position: sticky;
    top: 0;
    background: rgba(11, 11, 11, 0.8);
    backdrop-filter: blur(10px);
    z-index: 100;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    font-size: 20px;
}

.logo img {
    width: 24px;
    height: 24px;
    filter: invert(1);
}

nav a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    margin-left: 24px;
    transition: opacity 0.2s;
}

nav a:hover {
    opacity: 0.7;
}

/* Footer Section */
footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px 0;
    margin-top: 80px;
}

.footer-content {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--dim-text);
    font-size: 14px;
}

.footer-links a {
    color: var(--dim-text);
    text-decoration: none;
    margin-left: 20px;
}

.footer-links a:hover {
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    header {
        padding: 24px;
    }
    
    .legal-container {
        padding-top: 40px;
    }
    
    h1 {
        font-size: 32px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-links {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    
    .footer-links a {
        margin-left: 0;
    }
}
