/* Privacy policy page */
.privacy-page {
    max-width: 820px;
    margin: 0 auto;
    padding: 2rem 1.5rem 3rem;
}

.privacy-header {
    margin-bottom: 2rem;
}

.privacy-header h1 {
    font-size: 1.625rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.35;
    letter-spacing: -0.02em;
}

.privacy-body {
    color: var(--text-secondary);
}

.privacy-section {
    margin-bottom: 2.25rem;
}

.privacy-section h2 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.875rem;
}

.privacy-section h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.privacy-section p {
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.privacy-section ul {
    list-style: none;
    margin: 0.5rem 0 1rem;
}

.privacy-section ul li {
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.5rem;
    font-size: 0.9375rem;
    line-height: 1.65;
}

.privacy-section ul li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--green-500);
    font-weight: 500;
}

.privacy-table-wrap {
    overflow-x: auto;
    margin: 1rem 0;
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.privacy-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
}

.privacy-table th,
.privacy-table td {
    padding: 0.75rem 1rem;
    text-align: left;
    vertical-align: top;
    border-bottom: 1px solid var(--border);
}

.privacy-table th {
    background: var(--green-50);
    font-weight: 600;
    color: var(--text-secondary);
}

.privacy-table tr:last-child td {
    border-bottom: none;
}

.privacy-table td {
    color: var(--text-muted);
    line-height: 1.55;
}
