/* Legal Pages Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #FCFDFD;
    --blue-primary: #11A3FB;
    --blue-deep: #0052CC;
    --green-accent: #00E676;
    --text-title: #1E2330;
    --text-body: #4B5563;
    --text-subtle: #6B7280;
}

body {
    font-family: 'Nunito Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: var(--text-body);
    background: var(--bg-primary);
}

/* Navigation */
.navbar {
    background: white;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding: 16px 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 800;
    color: var(--text-title);
    text-decoration: none;
}

.logo-icon {
    width: 40px;
    height: 40px;
}

.logo-text {
    color: var(--blue-primary);
}

.logo-accent {
    color: var(--green-accent);
}

.back-link {
    color: var(--blue-primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
}

.back-link:hover {
    color: var(--blue-deep);
}

/* Breadcrumb */
.breadcrumb {
    max-width: 800px;
    margin: 24px auto 0;
    padding: 0 24px;
    font-size: 14px;
    color: var(--text-subtle);
}

.breadcrumb a {
    color: var(--blue-primary);
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* Content Container */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 24px 80px;
}

/* Typography */
h1 {
    font-size: 42px;
    font-weight: 800;
    color: var(--text-title);
    margin-bottom: 16px;
    line-height: 1.2;
}

.meta {
    color: var(--text-subtle);
    font-size: 14px;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 2px solid rgba(17, 163, 251, 0.1);
}

.meta strong {
    color: var(--text-body);
}

h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-title);
    margin-top: 48px;
    margin-bottom: 16px;
    padding-top: 16px;
}

h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-title);
    margin-top: 32px;
    margin-bottom: 12px;
}

p {
    margin-bottom: 16px;
    line-height: 1.8;
}

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

li {
    margin-bottom: 12px;
    line-height: 1.7;
}

li strong {
    color: var(--text-title);
}

a {
    color: var(--blue-primary);
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: var(--blue-deep);
    text-decoration: underline;
}

/* Footer Note */
.footer-note {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 14px;
    color: var(--text-subtle);
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 32px;
    }
    
    h2 {
        font-size: 24px;
    }
    
    h3 {
        font-size: 18px;
    }
    
    .container {
        padding: 32px 20px 60px;
    }
}
