/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
    font-size: 16px;
}

/* Container */
.container {
    max-width: 800px;
    margin: 0 auto;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    min-height: 100vh;
}

/* Header */
.header {
    background-color: #ffffff;
    border-bottom: 2px solid #e9ecef;
    padding: 2rem;
    text-align: center;
}

.header h1 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 0.5rem;
}

.header p {
    font-size: 1.1rem;
    color: #6c757d;
    font-weight: 400;
}

/* Main Content */
.main-content {
    padding: 2rem;
}

.privacy-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #dee2e6;
}

.privacy-header h1 {
    font-size: 2.25rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 1rem;
}

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

/* Privacy Sections */
.privacy-content {
    max-width: 100%;
}

.privacy-section {
    margin-bottom: 2.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid #f1f3f4;
}

.privacy-section:last-child {
    border-bottom: none;
}

.privacy-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e9ecef;
}

.privacy-section h3 {
    font-size: 1.25rem;
    font-weight: 500;
    color: #495057;
    margin-bottom: 0.75rem;
    margin-top: 1.5rem;
}

.privacy-section p {
    color: #495057;
    line-height: 1.7;
    margin-bottom: 1rem;
    text-align: justify;
}

.privacy-section ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1rem;
}

.privacy-section li {
    color: #495057;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.privacy-section li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0;
    color: #6c757d;
    font-weight: bold;
    font-size: 1.2rem;
}

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

/* Links */
a {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
}

a:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Footer */
.footer {
    background-color: #f8f9fa;
    border-top: 1px solid #dee2e6;
    padding: 1.5rem 2rem;
    text-align: center;
    color: #6c757d;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        margin: 0;
        box-shadow: none;
    }
    
    .header {
        padding: 1.5rem 1rem;
    }
    
    .header h1 {
        font-size: 2rem;
    }
    
    .main-content {
        padding: 1.5rem 1rem;
    }
    
    .privacy-header h1 {
        font-size: 1.75rem;
    }
    
    .privacy-section {
        padding: 1rem 0;
    }
    
    .privacy-section h2 {
        font-size: 1.25rem;
    }
    
    .privacy-section h3 {
        font-size: 1.1rem;
    }
    
    .footer {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .header h1 {
        font-size: 1.75rem;
    }
    
    .header p {
        font-size: 1rem;
    }
    
    .privacy-header h1 {
        font-size: 1.5rem;
    }
    
    .privacy-section h2 {
        font-size: 1.1rem;
    }
    
    .privacy-section h3 {
        font-size: 1rem;
    }
    
    .privacy-section p {
        text-align: left;
    }
}

/* Print Styles */
@media print {
    .container {
        box-shadow: none;
        max-width: 100%;
    }
    
    .header {
        border-bottom: 2px solid #000;
    }
    
    .privacy-section {
        page-break-inside: avoid;
    }
    
    a {
        color: #000;
        text-decoration: underline;
    }
}

/* Focus Styles for Accessibility */
a:focus {
    outline: 2px solid #007bff;
    outline-offset: 2px;
}

/* Selection Styling */
::selection {
    background: rgba(0, 123, 255, 0.2);
    color: #212529;
}

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