/* Privacy Policy Styles - Matches Landing Page Design */

.privacy-policy-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display",
                 "Segoe UI", Roboto, Inter, "Helvetica Neue", Arial, sans-serif;
    color: var(--text);
    background: var(--bg);
    min-height: 100vh;
}

/* Responsive container */
@media (min-width: 768px) {
    .privacy-policy-container {
        max-width: 900px;
        padding: 32px 24px;
    }
}

@media (min-width: 1024px) {
    .privacy-policy-container {
        max-width: 1100px;
        padding: 40px 32px;
    }
}

.privacy-policy-header {
    position: sticky;
    top: 0;
    background: var(--bg);
    z-index: 10;
    padding: 15px 0;
    border-bottom: 1px solid var(--border);
    margin-bottom: 30px;
}

.back-btn {
    background: var(--surface);
    border: 1px solid var(--border);
    font-size: 16px;
    color: var(--text);
    cursor: pointer;
    padding: 8px 16px;
    margin-bottom: 10px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.back-btn:hover {
    background: var(--border);
    transform: translateY(-1px);
}

.privacy-policy-content h1 {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin: 0 0 20px 0;
    color: var(--cta-bg);
}

.privacy-policy-content {
    line-height: 1.6;
}

.last-updated {
    font-style: italic;
    color: var(--muted);
    margin-bottom: 20px;
    font-size: 14px;
    text-align: center;
}

.info-block {
    background: var(--surface);
    border-left: 4px solid var(--cta-bg);
    padding: 20px;
    margin-bottom: 25px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.info-block p {
    margin: 8px 0;
    color: var(--text);
    font-size: 14px;
}

.info-block strong {
    color: var(--cta-bg);
    font-weight: 600;
}

.info-block a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

.info-block a:hover {
    color: var(--cta-bg);
    text-decoration: underline;
}

section {
    margin-bottom: 30px;
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: 20px;
    border: 1px solid var(--border);
}

section h2 {
    color: var(--cta-bg);
    font-size: 20px;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
}

section p {
    color: var(--text);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 12px;
}

section strong {
    color: var(--cta-bg);
    font-weight: 600;
}

section a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

section a:hover {
    color: var(--cta-bg);
    text-decoration: underline;
}

section ul {
    margin: 12px 0;
    padding-left: 20px;
}

section li {
    color: var(--text);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 6px;
}

/* Responsive improvements */
@media (min-width: 768px) {
    section {
        padding: 24px;
    }
    
    .privacy-policy-content h1 {
        font-size: 32px;
        margin-bottom: 24px;
    }
    
    section h2 {
        font-size: 22px;
    }
    
    section p,
    section li,
    .info-block p {
        font-size: 15px;
    }
}

@media (min-width: 1024px) {
    section {
        padding: 28px 32px;
    }
    
    .privacy-policy-content h1 {
        font-size: 36px;
    }
    
    section p,
    section li,
    .info-block p {
        font-size: 16px;
    }
}

.privacy-policy-header {
    position: sticky;
    top: 0;
    background: var(--bg);
    z-index: 10;
    padding: 15px 0;
    border-bottom: 1px solid var(--border);
    margin-bottom: 30px;
}

.back-btn {
    background: var(--surface);
    border: 1px solid var(--border);
    font-size: 16px;
    color: var(--text);
    cursor: pointer;
    padding: 8px 16px;
    margin-bottom: 10px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.back-btn:hover {
    background: var(--border);
    transform: translateY(-1px);
}

.privacy-policy-content h1 {
    font-size: 28px;
    font-weight: 700;
    margin: 0;
    color: #1a1a1a;
}

.privacy-policy-content {
    line-height: 1.6;
}

.last-updated {
    font-style: italic;
    color: #666;
    margin-bottom: 20px;
}

.info-block {
    background: #f8f9fa;
    border-left: 4px solid #007bff;
    padding: 15px;
    margin-bottom: 25px;
    border-radius: 4px;
}

.info-block p {
    margin: 8px 0;
}

section {
    margin-bottom: 30px;
}

section h2 {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
    margin-top: 25px;
}

section p {
    margin: 12px 0;
    color: #333;
}

section ul {
    margin: 12px 0;
    padding-left: 25px;
}

section li {
    margin: 8px 0;
    color: #333;
}

a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: #0056b3;
    text-decoration: underline;
}

strong {
    font-weight: 600;
    color: #1a1a1a;
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .privacy-policy-container {
        background: #1a1a1a;
        color: #e0e0e0;
    }

    .privacy-policy-header {
        background: #1a1a1a;
        border-bottom-color: #333;
    }

    .privacy-policy-header h1 {
        color: #ffffff;
    }

    .back-btn {
        color: #4a9eff;
    }

    .back-btn:hover {
        background-color: #2a2a2a;
    }

    .info-block {
        background: #2a2a2a;
        border-left-color: #4a9eff;
    }

    section h2 {
        color: #ffffff;
    }

    section p,
    section li {
        color: #e0e0e0;
    }

    strong {
        color: #ffffff;
    }

    a {
        color: #4a9eff;
    }

    a:hover {
        color: #80c0ff;
    }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .privacy-policy-container {
        padding: 15px;
    }

    .privacy-policy-header h1 {
        font-size: 24px;
    }

    section h2 {
        font-size: 20px;
    }
}
