/* Privacy Page Specific Styles */
.privacy-page {
    padding-top: 100px;
    min-height: 100vh;
}

.privacy-header {
    text-align: center;
    padding: 60px 0 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 60px;
}

.privacy-header h1 {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.last-updated {
    color: var(--text-muted);
    font-size: 14px;
}

.privacy-content {
    max-width: 900px;
    margin: 0 auto;
}

.privacy-section {
    margin-bottom: 60px;
}

.privacy-section h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary);
}

.privacy-section h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 32px 0 16px;
}

.privacy-section h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 24px 0 12px;
}

.privacy-section p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.privacy-section ul {
    list-style: none;
    padding-left: 0;
    margin: 16px 0;
}

.privacy-section ul li {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
}

.privacy-section ul li::before {
    content: '•';
    position: absolute;
    left: 8px;
    color: var(--primary);
    font-weight: bold;
    font-size: 20px;
}

/* Warning Section */
.warning-section {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(245, 158, 11, 0.1) 100%);
    border: 2px solid rgba(239, 68, 68, 0.3);
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 60px;
}

.warning-box {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    padding: 24px;
}

.warning-box p {
    margin-bottom: 16px;
}

.warning-list {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
}

.warning-list li {
    font-size: 16px;
    margin-bottom: 12px;
}

.medical-recommendation {
    background: rgba(99, 102, 241, 0.1);
    border-left: 4px solid var(--primary);
    padding: 16px 20px;
    border-radius: 8px;
    margin-top: 20px;
}

/* Data Boxes */
.data-box,
.not-collected-box,
.security-box,
.visibility-box,
.contact-box,
.disclaimer-box {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 24px;
    margin: 24px 0;
}

.not-collected-box {
    background: rgba(239, 68, 68, 0.05);
    border-color: rgba(239, 68, 68, 0.2);
}

.security-box {
    background: rgba(16, 185, 129, 0.05);
    border-color: rgba(16, 185, 129, 0.2);
}

.security-box h4 {
    color: var(--secondary);
}

.important-note {
    background: rgba(99, 102, 241, 0.1);
    border-left: 4px solid var(--primary);
    padding: 20px 24px;
    border-radius: 8px;
    margin: 24px 0;
}

.important-note p {
    margin-bottom: 12px;
}

.important-note ul {
    margin-top: 12px;
}

.visibility-box h4 {
    color: var(--primary);
    margin-top: 20px;
    margin-bottom: 12px;
}

.visibility-box h4:first-child {
    margin-top: 0;
}

.contact-box p {
    margin-bottom: 12px;
}

.contact-box a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-box a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.medical-note {
    font-style: italic;
    color: var(--text-muted);
    font-size: 14px;
    margin-top: 16px;
}

.location-box {
    border: 1px solid rgba(99, 102, 241, 0.4);
    background: rgba(99, 102, 241, 0.08);
}

.retention-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    font-size: 14px;
}

.retention-table th,
.retention-table td {
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 12px 16px;
    text-align: left;
    vertical-align: top;
}

.retention-table th {
    background: rgba(99, 102, 241, 0.15);
    color: var(--text-primary);
    font-weight: 600;
}

.retention-table td {
    color: var(--text-secondary);
}

/* Disclaimer Section */
.disclaimer-section {
    background: rgba(239, 68, 68, 0.05);
    border: 2px solid rgba(239, 68, 68, 0.2);
    border-radius: 16px;
    padding: 40px;
}

.disclaimer-box {
    background: rgba(0, 0, 0, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .privacy-header h1 {
        font-size: 32px;
    }

    .privacy-section h2 {
        font-size: 24px;
    }

    .privacy-section h3 {
        font-size: 20px;
    }

    .warning-section,
    .disclaimer-section {
        padding: 24px;
    }

    .data-box,
    .not-collected-box,
    .security-box,
    .visibility-box,
    .contact-box,
    .disclaimer-box {
        padding: 16px;
    }

    .retention-table {
        font-size: 12px;
    }

    .retention-table th,
    .retention-table td {
        padding: 8px 10px;
    }
}