/* Privacy Policy Specific Styles */

.privacy-policy {
    padding: 7rem 0 4rem;
    background: var(--bg-section);
    min-height: 80vh;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

.policy-content h1 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--fg);
    margin-bottom: 0.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.last-updated {
    color: var(--fg-muted);
    font-size: 0.9rem;
    margin-bottom: 2rem;
    font-style: italic;
}

.policy-intro {
    background: var(--neutral-50);
    padding: 1.5rem;
    border-radius: var(--radius);
    margin-bottom: 2rem;
    border-left: 4px solid var(--primary-500);
    color: var(--fg);
}

.policy-intro p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.policy-intro p:last-child {
    margin-bottom: 0;
    font-weight: 500;
}

.policy-section {
    margin-bottom: 2.5rem;
}

.policy-section h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--fg);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border);
    letter-spacing: -0.015em;
}

.policy-section h3 {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--fg-subtle);
    margin-top: 1.75rem;
    margin-bottom: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.policy-section ul ul {
    margin: 0.5rem 0 0.5rem 0;
    padding-left: 1.25rem;
    list-style-type: circle;
}

.policy-section ul ul li {
    margin-bottom: 0.35rem;
    color: var(--fg);
}

.policy-section p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: var(--fg);
}

.policy-section p:last-child {
    margin-bottom: 0;
}

.policy-section ul,
.policy-section ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.policy-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    color: var(--fg);
}

.policy-section strong {
    font-weight: 600;
    color: var(--primary-700);
}

.contact-info {
    background: var(--neutral-50);
    padding: 1.5rem;
    border-radius: var(--radius);
    margin-top: 1rem;
    border: 1px solid var(--border);
}

.contact-info p {
    margin-bottom: 0;
    font-size: 1rem;
    color: var(--fg);
}

.policy-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    text-align: center;
}

.policy-footer p {
    color: var(--fg-muted);
    font-size: 0.9rem;
    margin: 0;
}

/* Links in policy content */
.policy-content a {
    color: var(--primary-600);
    text-decoration: none;
    font-weight: 500;
}

.policy-content a:hover {
    text-decoration: underline;
}

/* Table of Contents (if needed) */
.toc {
    background: var(--neutral-50);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.toc h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--fg);
}

.toc ul {
    list-style: none;
    padding: 0;
}

.toc li {
    margin-bottom: 0.5rem;
}

.toc a {
    color: var(--fg-muted);
    text-decoration: none;
    font-weight: 400;
}

.toc a:hover {
    color: var(--primary-600);
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .privacy-policy {
        padding: 3rem 0 3rem;
    }

    .policy-content {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }

    .policy-content h1 {
        font-size: 2rem;
    }

    .policy-section h2 {
        font-size: 1.25rem;
    }

    .policy-intro {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .policy-content {
        padding: 1.5rem 1rem;
        margin: 0 0.5rem;
    }
    
    .policy-content h1 {
        font-size: 1.75rem;
    }
    
    .policy-section {
        margin-bottom: 2rem;
    }
}