/* ==========================================
   Legal Pages Styles
   ========================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    background: #f8f9fa;
    color: #2d3748;
    line-height: 1.7;
}

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

/* Header */
.legal-header {
    background: white;
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 700;
}

.logo a {
    color: #2d3748;
    text-decoration: none;
}

.logo svg {
    color: #667eea;
}

.back-link {
    padding: 8px 16px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s ease;
}

.back-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

/* Main Content */
.legal-content {
    padding: 48px 0 64px;
}

.legal-content h1 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1a202c;
}

.last-updated {
    color: #718096;
    font-size: 14px;
    margin-bottom: 32px;
}

section {
    margin-bottom: 40px;
}

section h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #2d3748;
    padding-top: 16px;
}

section h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    margin-top: 24px;
    color: #4a5568;
}

section p {
    margin-bottom: 16px;
    color: #4a5568;
    font-size: 16px;
}

section ul {
    margin-bottom: 16px;
    margin-left: 24px;
}

section li {
    margin-bottom: 8px;
    color: #4a5568;
    font-size: 16px;
}

section a {
    color: #667eea;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
}

section a:hover {
    border-bottom-color: #667eea;
}

section strong {
    color: #2d3748;
    font-weight: 600;
}

/* Legal Footer Navigation */
.legal-footer {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 2px solid #e2e8f0;
    display: flex;
    gap: 24px;
    justify-content: center;
}

.legal-footer a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.legal-footer a:hover {
    background: #f7fafc;
}

/* Site Footer */
.site-footer {
    background: #1a202c;
    color: #a0aec0;
    text-align: center;
    padding: 24px;
}

.site-footer p {
    font-size: 14px;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .legal-content h1 {
        font-size: 32px;
    }

    section h2 {
        font-size: 24px;
    }

    section h3 {
        font-size: 18px;
    }

    .legal-content {
        padding: 32px 0 48px;
    }

    .nav {
        padding: 12px 16px;
    }

    .container {
        padding: 0 16px;
    }

    .legal-footer {
        flex-direction: column;
        align-items: center;
    }
}
