/* Privacy Policy Page Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8fafc;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: white;
    border-bottom: 1px solid #e5e7eb;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    height: 40px;
    max-width: 220px;
    object-fit: contain;
}

.back-btn {
    background: #3b82f6;
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.back-btn:hover {
    background: #2563eb;
    transform: translateY(-1px);
}

/* Main Content */
.privacy-page {
    padding: 40px 0 60px;
    background: white;
    margin: 20px auto;
    max-width: 1200px;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.privacy-header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 2px solid #e5e7eb;
}

.privacy-header h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 15px;
}

.last-updated {
    font-size: 1rem;
    color: #6b7280;
    font-style: italic;
}

.privacy-content {
    max-width: 800px;
    margin: 0 auto;
}

.privacy-section {
    margin-bottom: 40px;
    padding: 30px;
    background: #f9fafb;
    border-radius: 12px;
    border-left: 4px solid #3b82f6;
}

.privacy-section h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.privacy-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #374151;
    margin: 25px 0 15px 0;
}

.privacy-section p {
    font-size: 1rem;
    color: #4b5563;
    margin-bottom: 15px;
    line-height: 1.7;
}

.privacy-section ul {
    margin: 15px 0 15px 25px;
    color: #4b5563;
}

.privacy-section li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.privacy-section li strong {
    color: #374151;
    font-weight: 600;
}

.contact-info {
    background: white;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    margin: 20px 0;
}

.contact-info p {
    margin: 0;
    line-height: 1.8;
}

.privacy-footer {
    margin-top: 50px;
    padding: 30px;
    background: #f3f4f6;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e5e7eb;
}

.privacy-footer p {
    font-size: 0.9rem;
    color: #6b7280;
    font-style: italic;
    line-height: 1.6;
}

/* Simple Footer */
.simple-footer {
    background: #1f2937;
    color: white;
    padding: 20px 0;
    text-align: center;
}

.simple-footer p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.simple-footer a {
    color: #60a5fa;
    text-decoration: none;
}

.simple-footer a:hover {
    color: #93c5fd;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .privacy-header h1 {
        font-size: 2.2rem;
    }
    
    .privacy-section {
        padding: 20px;
        margin-bottom: 25px;
    }
    
    .privacy-section h2 {
        font-size: 1.5rem;
    }
    
    .privacy-section h3 {
        font-size: 1.2rem;
    }
    
    .navbar .container {
        flex-direction: column;
        gap: 15px;
    }
    
    .brand-logo {
        height: 35px;
    }
    
    .back-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    .privacy-page {
        margin: 10px;
        padding: 30px 0 40px;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .privacy-header h1 {
        font-size: 1.8rem;
    }
    
    .privacy-section {
        padding: 15px;
    }
    
    .privacy-section h2 {
        font-size: 1.3rem;
    }
    
    .privacy-section ul {
        margin-left: 20px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Print styles */
@media print {
    .navbar,
    .simple-footer,
    .back-btn {
        display: none;
    }
    
    .privacy-page {
        box-shadow: none;
        margin: 0;
    }
    
    .privacy-section {
        background: white;
        border: 1px solid #ccc;
        page-break-inside: avoid;
    }
}