/* Import base styles */
@import url('styles.css');

/* Override main styles for privacy page */
body {
    background: #f8f9fa;
    min-height: 100vh;
}

/* Main Content */
.main-content {
    padding: 120px 0 80px;
    min-height: calc(100vh - 200px);
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    line-height: 1.7;
}

/* Typography */
h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.last-updated {
    text-align: center;
    color: #666;
    font-style: italic;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #f0f0f0;
}

h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #333;
    margin: 2.5rem 0 1rem 0;
    padding-top: 1.5rem;
    border-top: 1px solid #e9ecef;
}

h2:first-of-type {
    border-top: none;
    padding-top: 0;
}

h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #444;
    margin: 2rem 0 1rem 0;
}

h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #555;
    margin: 1.5rem 0 0.75rem 0;
}

/* Policy Sections */
.policy-section {
    margin-bottom: 2rem;
}

.policy-section p {
    margin-bottom: 1rem;
    color: #555;
    text-align: justify;
}

.policy-section ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.policy-section li {
    margin-bottom: 0.5rem;
    color: #555;
}

/* Links */
.content-wrapper a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
}

.content-wrapper a:hover {
    color: #764ba2;
    text-decoration: underline;
}

/* Emphasis */
.content-wrapper strong {
    color: #333;
    font-weight: 600;
}

/* Navigation adjustments */
.navbar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-content {
        padding: 100px 0 60px;
    }
    
    .content-wrapper {
        margin: 0 1rem;
        padding: 2rem 1.5rem;
        border-radius: 15px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.2rem;
    }
    
    .policy-section ul {
        padding-left: 1.5rem;
    }
}

@media (max-width: 480px) {
    .content-wrapper {
        margin: 0 0.5rem;
        padding: 1.5rem 1rem;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.3rem;
    }
    
    .policy-section p {
        text-align: left;
    }
}

/* Print styles */
@media print {
    .navbar,
    .footer {
        display: none;
    }
    
    .main-content {
        padding: 0;
    }
    
    .content-wrapper {
        box-shadow: none;
        margin: 0;
        padding: 0;
    }
    
    h1, h2, h3 {
        color: #000 !important;
        -webkit-text-fill-color: #000 !important;
    }
    
    .policy-section {
        page-break-inside: avoid;
    }
}