/* privacy.css — page-specific rules (shared rules in common.css) */

:root {
            --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }

body {
            background-color: #f8f9fa;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        }

/* navbar / btn chrome now provided by common.css (shared across all pages) */

.hero-section {
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #f0fdf4 100%);
            color: #1e293b;
            text-align: center;
            padding: 80px 0 60px;
            margin-bottom: 40px;
        }

.hero-section p {
            color: #64748b;
            opacity: 1;
        }

/* Content + table-of-contents links use the site accent (consistent across pages) */
.toc a,
        .content-card a {
            color: var(--primary-color);
            text-decoration: none;
        }

.toc a:hover,
        .content-card a:hover {
            text-decoration: underline;
        }

.content-card {
            background: white;
            border-radius: 12px;
            box-shadow: 0 2px 15px rgba(0,0,0,0.08);
            padding: 40px;
            margin-bottom: 30px;
        }

.info-box {
            background: #e7f5ff;
            border-left: 4px solid #339af0;
            border-radius: 0 8px 8px 0;
            padding: 20px;
            margin: 20px 0;
        }

.info-box p {
            margin-bottom: 0;
            color: #1971c2;
        }

.data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
        }

.data-table th,
        .data-table td {
            padding: 12px 15px;
            text-align: left;
            border-bottom: 1px solid #dee2e6;
        }

.data-table th {
            background: #f8f9fa;
            font-weight: 600;
            color: #333;
        }

.data-table tr:hover {
            background-color: #f8f9fa;
        }

.rights-badge {
            display: inline-block;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 500;
            margin-right: 8px;
            margin-bottom: 8px;
        }

.rights-badge.gdpr {
            background: #e7f5ff;
            color: #1971c2;
        }

.rights-badge.ccpa {
            background: #fff3bf;
            color: #e67700;
        }

.rights-badge.all {
            background: #d3f9d8;
            color: #2f9e44;
        }
