/* Privacy Policy & Cookies Policy - Cursor Style */
/* Inspired by cursor.com design */

/* Import Inter font for consistency */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* CSS Variables */
:root {
    --bg-color: #ffffff;
    --text-primary: #1a1a1a;
    --text-secondary: #666666;
    --text-muted: #999999;
    --border-color: #e1e1e1;
    --accent-color: #000000;
    --link-color: #0066cc;
    --container-max-width: 768px;
    --section-spacing: 2rem;
    --line-height-base: 1.6;
    --font-size-base: 16px;
    --font-size-h1: 2.5rem;
    --font-size-h2: 1.75rem;
    --font-size-small: 0.875rem;
}

/* Reset and base styles */
.privacy-page {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    color: var(--text-primary);
    background-color: var(--bg-color);
}

.privacy-page * {
    box-sizing: border-box;
}

/* Header section */
.privacy-header {
    background-color: var(--bg-color);
    padding: 4rem 0 2rem;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.privacy-title {
    font-size: var(--font-size-h1);
    font-weight: 600;
    color: var(--accent-color);
    margin: 0 0 0.5rem 0;
    line-height: 1.2;
}

.privacy-subtitle {
    font-size: var(--font-size-base);
    color: var(--text-secondary);
    margin: 0 0 1rem 0;
    font-weight: 400;
}

.last-updated {
    font-size: var(--font-size-small);
    color: var(--text-muted);
    margin: 0;
    font-weight: 400;
}

/* Main content */
.privacy-content {
    padding: 0;
    background-color: var(--bg-color);
}

.privacy-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

.privacy-body {
    padding: 3rem 0;
}

/* Section styles */
.privacy-section {
    margin-bottom: var(--section-spacing);
    background: none;
    border: none;
    box-shadow: none;
    padding: 0;
}

.privacy-section:last-child {
    margin-bottom: 0;
}

/* Typography */
.privacy-page .section-title,
.privacy-section h2 {
    font-size: var(--font-size-h2);
    font-weight: 600;
    color: var(--accent-color);
    margin: 3rem 0 1rem 0;
    line-height: 1.3;
    border: none;
    padding: 0;
    position: relative;
}

.privacy-page .section-title::before {
    display: none;
}

.privacy-section h2:first-child,
.section-content:first-child .privacy-page .section-title {
    margin-top: 0;
}

.section-content p {
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    color: var(--text-primary);
    margin: 0 0 1rem 0;
}

.section-content ul {
    margin: 0 0 1rem 0;
    padding-left: 1.5rem;
}

.section-content li {
    margin-bottom: 0.5rem;
    line-height: var(--line-height-base);
    color: var(--text-primary);
}

.section-content strong {
    font-weight: 600;
    color: var(--text-primary);
}

/* Links */
.section-content a {
    color: var(--link-color);
    text-decoration: none;
}

.section-content a:hover {
    text-decoration: underline;
}

/* Contact info */
.privacy-section .contact-info {
    background: none;
    border: none;
    border-radius: 0;
    padding: 0;
    margin-top: 1rem;
}

.privacy-section .contact-info h4 {
    font-size: var(--font-size-base);
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 0.5rem 0;
    display: block;
}

.privacy-section .contact-info p {
    margin: 0 0 0.25rem 0;
    color: var(--text-primary);
    font-size: var(--font-size-base);
}

.privacy-section .contact-info strong {
    font-weight: 600;
    color: var(--text-primary);
}

/* Cookie items (for cookies policy) */
.cookies-list {
    margin: 1rem 0;
}

.cookie-item {
    background: none;
    border: none;
    border-radius: 0;
    padding: 0;
    margin-bottom: 2rem;
    border-left: none;
    transition: none;
}

.cookie-item:hover {
    transform: none;
    box-shadow: none;
}

.cookie-item h4 {
    font-size: var(--font-size-base);
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 0.5rem 0;
}

.cookie-item p {
    margin: 0;
    color: var(--text-primary);
    line-height: var(--line-height-base);
}

/* Remove all animations */
.privacy-title,
.privacy-subtitle,
.last-updated,
.section-content,
.privacy-page .section-title,
.highlight-box,
.development-notice,
.privacy-section,
.privacy-section .contact-info {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
}

/* Remove hover effects */
.privacy-section:hover {
    transform: none;
    box-shadow: none;
}

/* Remove special boxes */
.highlight-box,
.development-notice {
    background: none;
    border: none;
    border-radius: 0;
    padding: 0;
    margin: 1rem 0;
    box-shadow: none;
    display: block;
}

.development-notice {
    display: none; /* Hide development notice for cleaner look */
}

.notice-icon {
    display: none;
}

.notice-content h3 {
    font-size: var(--font-size-base);
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 0.5rem 0;
}

.notice-content p {
    color: var(--text-primary);
    margin: 0;
    line-height: var(--line-height-base);
}

/* Responsive design */
@media (max-width: 768px) {
    .privacy-header {
        padding: 3rem 0 1.5rem;
    }
    
    .privacy-title {
        font-size: 2rem;
    }
    
    .privacy-subtitle {
        font-size: var(--font-size-small);
    }
    
    .privacy-body {
        padding: 2rem 0;
    }
    
    .privacy-page .section-title,
    .privacy-section h2 {
        font-size: 1.5rem;
        margin: 2rem 0 1rem 0;
    }
    
    .privacy-container {
        padding: 0 1rem;
    }
    
    :root {
        --section-spacing: 1.5rem;
    }
}

@media (max-width: 576px) {
    .privacy-header {
        padding: 2rem 0 1rem;
    }
    
    .privacy-title {
        font-size: 1.75rem;
    }
    
    .privacy-body {
        padding: 1.5rem 0;
    }
    
    .privacy-page .section-title,
    .privacy-section h2 {
        font-size: 1.25rem;
    }
    
    :root {
        --font-size-base: 15px;
        --section-spacing: 1rem;
    }
}

/* Print styles */
@media print {
    .privacy-header {
        border-bottom: 1px solid #000;
        padding: 1rem 0;
    }
    
    .privacy-section {
        page-break-inside: avoid;
    }
}
