/* Privacy Policy Page 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: #2d3748;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    min-height: 100vh;
}

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

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

.title-section {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #e2e8f0;
}

.title-section h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.subtitle {
    font-size: 1.1rem;
    color: #718096;
    font-weight: 500;
}

/* Content Sections */
.content {
    max-width: 800px;
    margin: 0 auto;
}

.section {
    margin-bottom: 2.5rem;
    padding: 1.5rem 0;
}

.section h2 {
    font-size: 1.6rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #6c7cfb;
    display: inline-block;
}

.section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #4a5568;
    margin: 1.5rem 0 0.75rem 0;
}

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

.section ul {
    margin: 1rem 0 1rem 1.5rem;
}

.section li {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0.5rem;
    color: #4a5568;
}

.section li strong {
    color: #2d3748;
    font-weight: 600;
}

/* Contact Info */
.contact-info {
    background: #f7fafc;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #6c7cfb;
    margin: 1rem 0;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-info a {
    color: #6c7cfb;
    text-decoration: none;
    font-weight: 500;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Consent Section */
.consent-section {
    background: linear-gradient(135deg, #edf2f7 0%, #e2e8f0 100%);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid #6c7cfb;
    margin-top: 2rem;
}

.consent-section h2 {
    color: #6c7cfb;
}

/* Footer */
.footer {
    background: #2d3748;
    color: #e2e8f0;
    text-align: center;
    padding: 2rem;
    margin-top: 3rem;
}

.footer p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        margin: 0;
        box-shadow: none;
    }
    
    .main-content {
        padding: 2rem 1.5rem;
    }
    
    .title-section h1 {
        font-size: 2rem;
    }
    
    .section h2 {
        font-size: 1.4rem;
    }
    
    .section h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .main-content {
        padding: 1.5rem 1rem;
    }
    
    .title-section h1 {
        font-size: 1.8rem;
    }
    
    .section {
        margin-bottom: 2rem;
    }
    
    .nav {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .nav a {
        padding: 0.75rem 1rem;
    }
}

/* Print Styles */
@media print {
    .footer {
        background: white !important;
        color: black !important;
        box-shadow: none !important;
    }
    
    .container {
        box-shadow: none;
    }
    
    .consent-section {
        background: white !important;
        border: 1px solid #ccc !important;
    }
}