/* Privacy Policy Page Specific Styles */
:root {
    --primary-color: #2563eb;
    --secondary-color: #4f46e5;
    --accent-color: #06b6d4;
    --dark-bg: #ffffff;
    --medium-bg: #f8fafc;
    --light-bg: #e2e8f0;
    --card-bg: #ffffff;
    --text-light: #1e293b;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --border-color: #cbd5e1;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    color: white;
    margin-bottom: 0;
}

.page-header:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none"/><path d="M0,0L100,100" stroke="rgba(255,255,255,0.05)" stroke-width="1"/><path d="M100,0L0,100" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></svg>');
    opacity: 0.3;
}

.page-header .container {
    position: relative;
    z-index: 10;
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.page-header p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 30px;
}

.last-updated {
    display: inline-flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 12px 24px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.last-updated span {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Privacy Content */
.privacy-content {
    padding: 80px 0;
    background-color: #ffffff;
}

.privacy-content .container {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    max-width: 1400px;
}

/* Navigation Sidebar */
.privacy-navigation {
    position: sticky;
    top: 100px;
    height: fit-content;
    background-color: var(--medium-bg);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
}

.privacy-navigation h3 {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 20px;
    font-weight: 600;
}

.privacy-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.privacy-navigation li {
    margin-bottom: 12px;
}

.privacy-navigation a {
    display: block;
    padding: 12px 16px;
    color: var(--text-muted);
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.privacy-navigation a:hover {
    background-color: rgba(37, 99, 235, 0.1);
    color: var(--primary-color);
    border-left-color: var(--primary-color);
    transform: translateX(4px);
}

/* Main Content */
.privacy-main {
    max-width: none;
}

.privacy-section {
    margin-bottom: 60px;
    scroll-margin-top: 100px;
}

.privacy-section:last-child {
    margin-bottom: 0;
}

.privacy-section h2 {
    font-size: 2.25rem;
    color: var(--text-light);
    margin-bottom: 24px;
    font-weight: 700;
    position: relative;
    padding-bottom: 16px;
}

.privacy-section h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.section-content {
    background-color: var(--card-bg);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
}

.section-content h3 {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 16px;
    margin-top: 32px;
    font-weight: 600;
}

.section-content h3:first-child {
    margin-top: 0;
}

.section-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.section-content ul {
    margin: 20px 0;
    padding-left: 0;
}

.section-content li {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
}

.section-content li:before {
    content: '•';
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.section-content strong {
    color: var(--text-light);
    font-weight: 600;
}

/* Contact Info */
.contact-info {
    margin: 30px 0;
    padding: 30px;
    background-color: var(--medium-bg);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    gap: 16px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item i {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-top: 4px;
    flex-shrink: 0;
}

.contact-item span {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .privacy-content .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .privacy-navigation {
        position: static;
        order: 2;
        margin-top: 40px;
    }
    
    .privacy-main {
        order: 1;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 60px 0;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .page-header p {
        font-size: 1.125rem;
    }
    
    .privacy-content {
        padding: 60px 0;
    }
    
    .privacy-navigation {
        padding: 24px;
    }
    
    .section-content {
        padding: 30px 24px;
    }
    
    .privacy-section h2 {
        font-size: 1.8rem;
    }
    
    .section-content h3 {
        font-size: 1.3rem;
    }
    
    .section-content p,
    .section-content li {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
    
    .privacy-navigation {
        padding: 20px;
    }
    
    .section-content {
        padding: 24px 20px;
    }
    
    .privacy-section h2 {
        font-size: 1.6rem;
    }
    
    .contact-info {
        padding: 24px 20px;
    }
}
