/* Privacy Policy Optimized CSS */

/* Skip link for accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #3263D6;
    color: white;
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 1000;
}

.skip-link:focus {
    top: 6px;
}

/* Base styles */
body {
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #0f172a;
    max-width: 65ch;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    line-height: 1.65;
}

/* Layout */
.header {
    margin-bottom: 2rem;
}

.content {
    color: #475569;
}

/* Typography */
.heading-1 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #0f172a;
}

.heading-2 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    color: #0f172a;
    line-height: 1.3;
}

.heading-3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #0f172a;
    line-height: 1.4;
}

.paragraph {
    margin-bottom: 1.25rem;
}

.subheader {
    color: #334155;
    font-weight: 500;
}

.meta-text {
    color: #6b7280;
}

/* Links */
.link {
    color: #3263D6;
    text-decoration: none;
}

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

/* Lists */
.list {
    list-style-type: disc;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.65;
}

.list li {
    margin-bottom: 0.75rem;
}

/* Spacing utilities */
.mb-4 {
    margin-bottom: 1rem;
}

/* Responsive design */
@media (max-width: 640px) {
    body {
        padding: 1.5rem 1rem;
    }

    .heading-1 {
        font-size: 1.5rem;
    }

    .heading-2 {
        font-size: 1.125rem;
    }
}