/* public/css/privacy.css - Privacy Policy page styling */

/* Hero Section */
.privacy-hero {
    padding: 140px 0 80px;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.privacy-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 15% 25%, rgba(0, 212, 255, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 85% 75%, rgba(124, 58, 237, 0.12) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
    font-size: var(--font-size-sm);
    color: var(--text-muted);
}

.breadcrumb a {
    color: var(--primary-color);
    transition: var(--transition-fast);
}

.breadcrumb a:hover {
    color: var(--primary-light);
}

.breadcrumb i {
    font-size: 10px;
}

.hero-title {
    font-size: var(--font-size-3xl);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.hero-subtitle {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Privacy Badges */
.privacy-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: var(--radius-lg);
    color: #22c55e;
    font-size: var(--font-size-sm);
    font-weight: 600;
}

.badge-item i {
    font-size: var(--font-size-lg);
}

.last-updated {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: var(--radius-lg);
    color: var(--primary-color);
    font-size: var(--font-size-sm);
    font-weight: 600;
    display: inline-flex;
}

/* Content Section */
.privacy-content {
    padding: var(--section-padding);
}

.content-wrapper {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: flex-start;
}

/* Table of Contents Sidebar */
.toc-sidebar {
    position: sticky;
    top: 120px;
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-2xl);
    padding: 30px 0;
    height: fit-content;
}

.toc-header {
    padding: 0 30px 20px;
    border-bottom: 1px solid var(--border-primary);
    margin-bottom: 20px;
}

.toc-header h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-primary);
    font-size: var(--font-size-lg);
    margin: 0;
}

.toc-header h3 i {
    color: var(--primary-color);
}

.toc-nav {
    display: flex;
    flex-direction: column;
}

.toc-link {
    display: block;
    padding: 12px 30px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: var(--font-size-sm);
    font-weight: 500;
    transition: var(--transition-normal);
    border-left: 3px solid transparent;
}

.toc-link:hover {
    color: var(--primary-color);
    background: rgba(0, 212, 255, 0.05);
}

.toc-link.active {
    color: var(--primary-color);
    background: rgba(0, 212, 255, 0.1);
    border-left-color: var(--primary-color);
}

/* Main Content */
.privacy-main {
    background: var(--bg-card);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-2xl);
    padding: 40px;
}

/* Introduction */
.privacy-intro {
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-primary);
}

.privacy-intro h2 {
    color: var(--text-primary);
    font-size: var(--font-size-2xl);
    margin-bottom: 20px;
}

.privacy-intro p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

.commitment-note {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: var(--radius-lg);
    margin-top: 24px;
}

.commitment-note i {
    color: #ef4444;
    font-size: var(--font-size-lg);
    margin-top: 2px;
    flex-shrink: 0;
}

.commitment-note strong {
    color: var(--text-primary);
}

.commitment-note p {
    margin: 8px 0 0;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Privacy Sections */
.privacy-section {
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-primary);
}

.privacy-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.privacy-section h2 {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-primary);
    font-size: var(--font-size-2xl);
    margin-bottom: 24px;
    font-weight: 700;
}

.section-number {
    background: var(--gradient-primary);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-lg);
    font-weight: 800;
    flex-shrink: 0;
}

.section-content h3 {
    color: var(--text-primary);
    font-size: var(--font-size-xl);
    margin: 32px 0 16px;
    font-weight: 600;
}

.section-content h4 {
    color: var(--text-primary);
    font-size: var(--font-size-lg);
    margin: 24px 0 12px;
    font-weight: 600;
}

.section-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.section-content ul {
    margin: 16px 0;
    padding-left: 0;
}

.section-content li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.section-content li::before {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary-color);
    font-size: 12px;
    margin-top: 4px;
    flex-shrink: 0;
}

/* Service Scope */
.service-scope {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 24px 0;
}

.scope-item {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-lg);
}

.scope-item i {
    color: var(--primary-color);
    font-size: var(--font-size-lg);
    margin-top: 2px;
    flex-shrink: 0;
}

.scope-item h4 {
    color: var(--text-primary);
    margin-bottom: 8px;
    font-size: var(--font-size-base);
}

.scope-item p {
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
    margin: 0;
    line-height: 1.5;
}

/* Important Notice */
.important-notice {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: var(--radius-lg);
    margin: 24px 0;
}

.important-notice i {
    color: #f59e0b;
    font-size: var(--font-size-lg);
    margin-top: 2px;
    flex-shrink: 0;
}

.important-notice h4 {
    color: #f59e0b;
    margin-bottom: 8px;
    font-size: var(--font-size-base);
}

.important-notice p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

/* Data Categories */
.data-categories {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 24px 0;
}

.category-item {
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-lg);
    padding: 24px;
    position: relative;
}

.category-item.personal {
    background: rgba(59, 130, 246, 0.05);
    border-color: rgba(59, 130, 246, 0.2);
}

.category-item.technical {
    background: rgba(34, 197, 94, 0.05);
    border-color: rgba(34, 197, 94, 0.2);
}

.category-item.usage {
    background: rgba(251, 191, 36, 0.05);
    border-color: rgba(251, 191, 36, 0.2);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.category-header i {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: var(--font-size-base);
}

.category-item.personal .category-header i {
    background: #3b82f6;
}

.category-item.technical .category-header i {
    background: #22c55e;
}

.category-item.usage .category-header i {
    background: #f59e0b;
}

.category-header h4 {
    color: var(--text-primary);
    margin: 0;
    font-size: var(--font-size-lg);
}

.data-purpose {
    margin-top: 16px;
    padding: 12px;
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
}

/* Data Protection Note */
.data-protection-note {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: var(--radius-lg);
    margin: 24px 0;
}

.data-protection-note i {
    color: #22c55e;
    font-size: var(--font-size-lg);
    margin-top: 2px;
    flex-shrink: 0;
}

.data-protection-note h4 {
    color: #22c55e;
    margin-bottom: 12px;
    font-size: var(--font-size-base);
}

/* Purpose Grid */
.purpose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin: 24px 0;
}

.purpose-item {
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-lg);
    padding: 24px;
}

.purpose-item.primary {
    background: rgba(0, 212, 255, 0.05);
    border-color: rgba(0, 212, 255, 0.2);
}

.purpose-item.support {
    background: rgba(34, 197, 94, 0.05);
    border-color: rgba(34, 197, 94, 0.2);
}

.purpose-item.improvement {
    background: rgba(251, 191, 36, 0.05);
    border-color: rgba(251, 191, 36, 0.2);
}

.purpose-item.security {
    background: rgba(239, 68, 68, 0.05);
    border-color: rgba(239, 68, 68, 0.2);
}

.purpose-item.communication {
    background: rgba(124, 58, 237, 0.05);
    border-color: rgba(124, 58, 237, 0.2);
}

.purpose-item.analytics {
    background: rgba(156, 163, 175, 0.05);
    border-color: rgba(156, 163, 175, 0.2);
}

.purpose-item i {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: var(--font-size-lg);
    margin-bottom: 16px;
}

.purpose-item.primary i { background: var(--primary-color); }
.purpose-item.support i { background: #22c55e; }
.purpose-item.improvement i { background: #f59e0b; }
.purpose-item.security i { background: #ef4444; }
.purpose-item.communication i { background: #7c3aed; }
.purpose-item.analytics i { background: #6b7280; }

.purpose-item h4 {
    color: var(--text-primary);
    margin-bottom: 12px;
    font-size: var(--font-size-base);
}

/* Consent Note */
.consent-note {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: var(--radius-lg);
    margin: 24px 0;
}

.consent-note i {
    color: #3b82f6;
    font-size: var(--font-size-lg);
    margin-top: 2px;
    flex-shrink: 0;
}

.consent-note h4 {
    color: #3b82f6;
    margin-bottom: 8px;
    font-size: var(--font-size-base);
}

.consent-note p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

/* Collection Methods */
.collection-methods {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 24px 0;
}

.method-item {
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.method-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 24px;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-primary);
}

.method-header i {
    color: var(--primary-color);
    font-size: var(--font-size-lg);
}

.method-header h4 {
    color: var(--text-primary);
    margin: 0;
    font-size: var(--font-size-base);
}

.method-content {
    padding: 20px 24px;
}

.method-content p {
    color: var(--text-secondary);
    margin-bottom: 12px;
}

/* Cookie Info */
.cookie-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 24px 0;
}

.cookie-type {
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-lg);
    padding: 20px;
    background: var(--bg-secondary);
}

.cookie-type h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-primary);
    margin-bottom: 12px;
    font-size: var(--font-size-base);
}

.cookie-type h4 i {
    color: var(--primary-color);
}

.cookie-type p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    font-size: var(--font-size-sm);
}

.cookie-examples {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.cookie-examples span {
    padding: 4px 8px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: var(--radius-sm);
    color: var(--primary-color);
    font-size: var(--font-size-xs);
    font-family: monospace;
}

/* Control Note */
.control-note {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: var(--radius-lg);
    margin: 24px 0;
}

.control-note i {
    color: #7c3aed;
    font-size: var(--font-size-lg);
    margin-top: 2px;
    flex-shrink: 0;
}

.control-note h4 {
    color: #7c3aed;
    margin-bottom: 8px;
    font-size: var(--font-size-base);
}

.control-note p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

/* Security Measures */
.security-measures {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin: 24px 0;
}

.security-item {
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-lg);
    padding: 24px;
}

.security-item.encryption {
    background: rgba(239, 68, 68, 0.05);
    border-color: rgba(239, 68, 68, 0.2);
}

.security-item.access {
    background: rgba(34, 197, 94, 0.05);
    border-color: rgba(34, 197, 94, 0.2);
}

.security-item.infrastructure {
    background: rgba(59, 130, 246, 0.05);
    border-color: rgba(59, 130, 246, 0.2);
}

.security-item.compliance {
    background: rgba(124, 58, 237, 0.05);
    border-color: rgba(124, 58, 237, 0.2);
}

.security-item i {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: var(--font-size-lg);
    margin-bottom: 16px;
}

.security-item.encryption i { background: #ef4444; }
.security-item.access i { background: #22c55e; }
.security-item.infrastructure i { background: #3b82f6; }
.security-item.compliance i { background: #7c3aed; }

.security-item h4 {
    color: var(--text-primary);
    margin-bottom: 12px;
    font-size: var(--font-size-base);
}

/* Retention Timeline */
.retention-timeline {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 24px 0;
    position: relative;
}

.retention-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 20px;
    bottom: 20px;
    width: 2px;
    background: var(--border-primary);
}

.timeline-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    position: relative;
}

.timeline-marker {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-secondary);
    border: 3px solid var(--border-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.timeline-marker.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.timeline-marker.delete {
    background: #ef4444;
    border-color: #ef4444;
}

.timeline-content {
    flex: 1;
    padding: 8px 0;
}

.timeline-content h4 {
    color: var(--text-primary);
    margin-bottom: 8px;
    font-size: var(--font-size-base);
}

.timeline-content p {
    color: var(--text-secondary);
    margin-bottom: 8px;
    font-size: var(--font-size-sm);
}

.timeline-period {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 4px 8px;
    border-radius: var(--radius-sm);
    font-size: var(--font-size-xs);
    font-weight: 600;
}

/* Storage Locations */
.storage-locations {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 24px 0;
}

.location-item {
    text-align: center;
    padding: 20px;
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-lg);
    background: var(--bg-secondary);
}

.location-item i {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: var(--font-size-lg);
    margin: 0 auto 12px;
}

.location-item.primary i { background: var(--primary-color); }
.location-item.backup i { background: #f59e0b; }
.location-item.cdn i { background: #22c55e; }

.location-item h4 {
    color: var(--text-primary);
    margin-bottom: 8px;
    font-size: var(--font-size-base);
}

.location-item p {
    color: var(--text-secondary);
    margin-bottom: 8px;
    font-size: var(--font-size-sm);
}

.location-type {
    display: inline-block;
    background: rgba(0, 212, 255, 0.1);
    color: var(--primary-color);
    padding: 4px 8px;
    border-radius: var(--radius-sm);
    font-size: var(--font-size-xs);
    font-weight: 600;
}

/* Security Incident */
.security-incident {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: var(--radius-lg);
    margin: 24px 0;
}

.security-incident i {
    color: #ef4444;
    font-size: var(--font-size-lg);
    margin-top: 2px;
    flex-shrink: 0;
}

.security-incident h4 {
    color: #ef4444;
    margin-bottom: 8px;
    font-size: var(--font-size-base);
}

.security-incident p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

/* No Sharing Promise */
.no-sharing-promise {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: rgba(34, 197, 94, 0.1);
    border: 2px solid rgba(34, 197, 94, 0.3);
    border-radius: var(--radius-lg);
    margin: 24px 0;
}

.no-sharing-promise i {
    color: #22c55e;
    font-size: var(--font-size-2xl);
    margin-top: 2px;
    flex-shrink: 0;
}

.no-sharing-promise h4 {
    color: #22c55e;
    margin-bottom: 8px;
    font-size: var(--font-size-lg);
}

.no-sharing-promise p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

/* Sharing Cases */
.sharing-cases {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin: 24px 0;
}

.case-item {
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-lg);
    padding: 24px;
}

.case-item.legal {
    background: rgba(239, 68, 68, 0.05);
    border-color: rgba(239, 68, 68, 0.2);
}

.case-item.protection {
    background: rgba(251, 191, 36, 0.05);
    border-color: rgba(251, 191, 36, 0.2);
}

.case-item.consent {
    background: rgba(34, 197, 94, 0.05);
    border-color: rgba(34, 197, 94, 0.2);
}

.case-item.emergency {
    background: rgba(124, 58, 237, 0.05);
    border-color: rgba(124, 58, 237, 0.2);
}

.case-item i {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: var(--font-size-lg);
    margin-bottom: 16px;
}

.case-item.legal i { background: #ef4444; }
.case-item.protection i { background: #f59e0b; }
.case-item.consent i { background: #22c55e; }
.case-item.emergency i { background: #7c3aed; }

.case-item h4 {
    color: var(--text-primary);
    margin-bottom: 12px;
    font-size: var(--font-size-base);
}

.case-item p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    font-size: var(--font-size-sm);
}

.case-conditions {
    background: var(--bg-secondary);
    padding: 12px;
    border-radius: var(--radius-lg);
    font-size: var(--font-size-sm);
}

.case-conditions strong {
    color: var(--text-primary);
    display: block;
    margin-bottom: 8px;
}

/* Service Partners */
.service-partners {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 24px 0;
}

.partner-item {
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-lg);
    padding: 20px;
    text-align: center;
    background: var(--bg-secondary);
}

.partner-item i {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-lg);
    margin: 0 auto 12px;
}

.partner-item h4 {
    color: var(--text-primary);
    margin-bottom: 8px;
    font-size: var(--font-size-base);
}

.partner-item p {
    color: var(--text-secondary);
    margin-bottom: 12px;
    font-size: var(--font-size-sm);
}

.partner-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
}

.partner-list span {
    padding: 4px 8px;
    background: rgba(0, 212, 255, 0.1);
    color: var(--primary-color);
    border-radius: var(--radius-sm);
    font-size: var(--font-size-xs);
    font-weight: 600;
}

/* Partner Requirements */
.partner-requirements {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: var(--radius-lg);
    margin: 24px 0;
}

.partner-requirements i {
    color: #3b82f6;
    font-size: var(--font-size-lg);
    margin-top: 2px;
    flex-shrink: 0;
}

.partner-requirements h4 {
    color: #3b82f6;
    margin-bottom: 12px;
    font-size: var(--font-size-base);
}

/* User Rights */
.user-rights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
    margin: 24px 0;
}

.right-item {
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-lg);
    padding: 24px;
    background: var(--bg-secondary);
}

.right-item.access { border-left: 4px solid #3b82f6; }
.right-item.rectification { border-left: 4px solid #22c55e; }
.right-item.erasure { border-left: 4px solid #ef4444; }
.right-item.portability { border-left: 4px solid #f59e0b; }
.right-item.restriction { border-left: 4px solid #7c3aed; }
.right-item.objection { border-left: 4px solid #ec4899; }
.right-item.withdraw { border-left: 4px solid #06b6d4; }
.right-item.complaint { border-left: 4px solid #dc2626; }

.right-item i {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: var(--font-size-base);
    margin-bottom: 12px;
}

.right-item.access i { background: #3b82f6; }
.right-item.rectification i { background: #22c55e; }
.right-item.erasure i { background: #ef4444; }
.right-item.portability i { background: #f59e0b; }
.right-item.restriction i { background: #7c3aed; }
.right-item.objection i { background: #ec4899; }
.right-item.withdraw i { background: #06b6d4; }
.right-item.complaint i { background: #dc2626; }

.right-item h4 {
    color: var(--text-primary);
    margin-bottom: 12px;
    font-size: var(--font-size-base);
}

.right-item p {
    color: var(--text-secondary);
    margin-bottom: 12px;
    font-size: var(--font-size-sm);
}

.how-to,
.processing-time,
.limitations,
.format,
.note,
.contact-info {
    margin-top: 8px;
    padding: 8px;
    background: var(--bg-primary);
    border-radius: var(--radius-sm);
    font-size: var(--font-size-xs);
    line-height: 1.4;
}

.how-to strong,
.processing-time strong,
.limitations strong,
.format strong,
.note strong,
.contact-info strong {
    color: var(--text-primary);
}

/* Exercise Methods */
.exercise-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 24px 0;
}

.method-card {
    text-align: center;
    padding: 24px;
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-lg);
    background: var(--bg-secondary);
}

.method-card i {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-xl);
    margin: 0 auto 16px;
}

.method-card h4 {
    color: var(--text-primary);
    margin-bottom: 8px;
    font-size: var(--font-size-base);
}

.method-card p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    font-size: var(--font-size-sm);
}

.method-card button {
    padding: 8px 16px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--radius-lg);
    font-size: var(--font-size-sm);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-normal);
}

.method-card button:hover {
    background: var(--primary-dark);
}

/* Verification Note */
.verification-note {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: rgba(156, 163, 175, 0.1);
    border: 1px solid rgba(156, 163, 175, 0.3);
    border-radius: var(--radius-lg);
    margin: 24px 0;
}

.verification-note i {
    color: #6b7280;
    font-size: var(--font-size-lg);
    margin-top: 2px;
    flex-shrink: 0;
}

.verification-note h4 {
    color: #6b7280;
    margin-bottom: 8px;
    font-size: var(--font-size-base);
}

.verification-note p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

/* Cookie Categories */
.cookie-categories {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 24px 0;
}

.cookie-category {
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-primary);
}

.category-header > div {
    display: flex;
    align-items: center;
    gap: 12px;
}

.category-header i {
    color: var(--primary-color);
    font-size: var(--font-size-lg);
}

.category-header h4 {
    color: var(--text-primary);
    margin: 0;
    font-size: var(--font-size-base);
}

.status {
    padding: 4px 8px;
    border-radius: var(--radius-sm);
    font-size: var(--font-size-xs);
    font-weight: 600;
    text-transform: uppercase;
}

.status.required {
    background: #ef4444;
    color: white;
}

.status.optional {
    background: #22c55e;
    color: white;
}

.cookie-category > p {
    padding: 0 24px 16px;
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
}

.cookie-list {
    padding: 0 24px 24px;
}

.cookie-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    margin-bottom: 8px;
}

.cookie-item:last-child {
    margin-bottom: 0;
}

.cookie-item strong {
    color: var(--text-primary);
    font-family: monospace;
    font-size: var(--font-size-sm);
}

.cookie-item > span:nth-child(2) {
    color: var(--text-secondary);
    font-size: var(--font-size-xs);
    flex: 1;
    margin: 0 12px;
}

.expiry {
    color: var(--text-muted);
    font-size: var(--font-size-xs);
    background: var(--bg-secondary);
    padding: 2px 6px;
    border-radius: var(--radius-sm);
}

/* Cookie Controls */
.cookie-controls {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin: 24px 0;
}

.control-method {
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-lg);
    padding: 24px;
    text-align: center;
    background: var(--bg-secondary);
}

.control-method i {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-xl);
    margin: 0 auto 16px;
}

.control-method h4 {
    color: var(--text-primary);
    margin-bottom: 8px;
    font-size: var(--font-size-base);
}

.control-method p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    font-size: var(--font-size-sm);
}

.browser-links,
.optout-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.browser-links a,
.optout-links a {
    padding: 6px 12px;
    background: rgba(0, 212, 255, 0.1);
    color: var(--primary-color);
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-size: var(--font-size-xs);
    font-weight: 600;
    transition: var(--transition-normal);
}

.browser-links a:hover,
.optout-links a:hover {
    background: rgba(0, 212, 255, 0.2);
}

.manage-cookies {
    padding: 8px 16px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--radius-lg);
    font-size: var(--font-size-sm);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-normal);
}

.manage-cookies:hover {
    background: var(--primary-dark);
}

/* Other Tracking */
.other-tracking {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 24px 0;
}

.tracking-item {
    text-align: center;
    padding: 20px;
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-lg);
    background: var(--bg-secondary);
}

.tracking-item i {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-lg);
    margin: 0 auto 12px;
}

.tracking-item h4 {
    color: var(--text-primary);
    margin-bottom: 8px;
    font-size: var(--font-size-base);
}

.tracking-item p {
    color: var(--text-secondary);
    margin: 0;
    font-size: var(--font-size-sm);
}

/* Do Not Track */
.do-not-track {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: var(--radius-lg);
    margin: 24px 0;
}

.do-not-track i {
    color: #22c55e;
    font-size: var(--font-size-lg);
    margin-top: 2px;
    flex-shrink: 0;
}

.do-not-track h4 {
    color: #22c55e;
    margin-bottom: 8px;
    font-size: var(--font-size-base);
}

.do-not-track p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

/* Child Protection */
.age-restriction {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: rgba(239, 68, 68, 0.1);
    border: 2px solid rgba(239, 68, 68, 0.3);
    border-radius: var(--radius-lg);
    margin: 24px 0;
}

.age-restriction i {
    color: #ef4444;
    font-size: var(--font-size-2xl);
    margin-top: 2px;
    flex-shrink: 0;
}

.age-restriction h4 {
    color: #ef4444;
    margin-bottom: 8px;
    font-size: var(--font-size-lg);
}

.age-restriction p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

.child-protection {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 24px 0;
}

.protection-item {
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-lg);
    padding: 20px;
    text-align: center;
    background: var(--bg-secondary);
}

.protection-item i {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #ef4444;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-lg);
    margin: 0 auto 12px;
}

.protection-item h4 {
    color: var(--text-primary);
    margin-bottom: 8px;
    font-size: var(--font-size-base);
}

.protection-item p {
    color: var(--text-secondary);
    margin: 0;
    font-size: var(--font-size-sm);
}

/* Parent Guidelines */
.parent-guidelines {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 24px 0;
}

.guideline-item {
    text-align: center;
    padding: 20px;
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-lg);
    background: var(--bg-secondary);
}

.guideline-item i {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #22c55e;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-lg);
    margin: 0 auto 12px;
}

.guideline-item h4 {
    color: var(--text-primary);
    margin-bottom: 8px;
    font-size: var(--font-size-base);
}

.guideline-item p {
    color: var(--text-secondary);
    margin: 0;
    font-size: var(--font-size-sm);
}

/* Process Steps */
.process-steps {
    display: flex;
    gap: 20px;
    margin: 24px 0;
    overflow-x: auto;
    padding-bottom: 10px;
}

.step {
    flex: 1;
    min-width: 200px;
    text-align: center;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-lg);
    font-weight: 700;
    margin: 0 auto 16px;
}

.step-content h4 {
    color: var(--text-primary);
    margin-bottom: 8px;
    font-size: var(--font-size-base);
}

.step-content p {
    color: var(--text-secondary);
    margin: 0;
    font-size: var(--font-size-sm);
    line-height: 1.5;
}

/* Contact Parents */
.contact-parents {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: var(--radius-lg);
    margin: 24px 0;
}

.contact-parents i {
    color: #3b82f6;
    font-size: var(--font-size-lg);
    margin-top: 2px;
    flex-shrink: 0;
}

.contact-parents h4 {
    color: #3b82f6;
    margin-bottom: 8px;
    font-size: var(--font-size-base);
}

.contact-parents p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

/* Privacy Footer */
.privacy-footer {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid var(--border-primary);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.update-info,
.contact-privacy {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-lg);
}

.update-info i,
.contact-privacy i {
    color: var(--primary-color);
    font-size: var(--font-size-xl);
    margin-top: 2px;
    flex-shrink: 0;
}

.update-info h4,
.contact-privacy h4 {
    color: var(--text-primary);
    margin-bottom: 12px;
    font-size: var(--font-size-lg);
}

.update-info p,
.contact-privacy p {
    color: var(--text-secondary);
    margin: 4px 0;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .toc-sidebar {
        position: static;
        order: 2;
    }
    
    .privacy-main {
        order: 1;
    }
    
    .privacy-footer {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .privacy-hero {
        padding: 120px 0 60px;
    }
    
    .hero-title {
        font-size: var(--font-size-2xl);
    }
    
    .hero-subtitle {
        font-size: var(--font-size-base);
    }
    
    .privacy-badges {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    
    .privacy-main {
        padding: 24px;
    }
    
    .toc-sidebar {
        padding: 20px 0;
    }
    
    .toc-header {
        padding: 0 20px 16px;
    }
    
    .toc-link {
        padding: 10px 20px;
        font-size: var(--font-size-xs);
    }
    
    .purpose-grid,
    .security-measures,
    .sharing-cases,
    .user-rights {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        flex-direction: column;
        gap: 16px;
    }
    
    .retention-timeline::before {
        display: none;
    }
    
    .timeline-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .exercise-methods,
    .cookie-controls,
    .service-partners {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .privacy-main {
        padding: 16px;
    }
    
    .privacy-section h2 {
        font-size: var(--font-size-xl);
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .section-number {
        width: 35px;
        height: 35px;
        font-size: var(--font-size-base);
    }
    
    .privacy-badges {
        gap: 12px;
    }
    
    .badge-item {
        flex-direction: column;
        text-align: center;
        padding: 12px 16px;
    }
    
    .scope-item,
    .protection-item,
    .guideline-item,
    .tracking-item {
        padding: 16px;
    }
    
    .cookie-category {
        font-size: var(--font-size-sm);
    }
    
    .category-header {
        padding: 16px;
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }
    
    .cookie-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
}

/* Print Styles */
@media print {
    .privacy-hero::before,
    .toc-sidebar {
        display: none;
    }
    
    .content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .privacy-section {
        break-inside: avoid;
        page-break-inside: avoid;
    }
    
    .privacy-main {
        box-shadow: none;
        border: none;
    }
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Highlight target section */
.privacy-section:target {
    background: rgba(0, 212, 255, 0.05);
    border-radius: var(--radius-lg);
    margin: -10px;
    padding: 40px 10px;
    transition: background 0.3s ease;
}