* {
    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: #f8fafc;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

header .subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    opacity: 0.9;
}

main {
    padding: 40px 0;
}

.privacy-content {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
}

.intro {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid #e2e8f0;
}

.intro h2 {
    color: #667eea;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.intro p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 15px;
}

section {
    margin-bottom: 35px;
}

h2 {
    color: #2d3748;
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e2e8f0;
}

h3 {
    color: #4a5568;
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 15px;
    margin-top: 25px;
}

p {
    color: #555;
    margin-bottom: 15px;
    text-align: justify;
}

ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

li {
    color: #555;
    margin-bottom: 8px;
}

.contact-info {
    background: #f7fafc;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

.contact-item {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.contact-item h3 {
    color: #667eea;
    font-size: 1.1rem;
    margin-bottom: 10px;
    margin-top: 0;
}

.contact-item p {
    margin-bottom: 0;
}

.contact-item a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #764ba2;
    text-decoration: underline;
}

.mission {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px;
    border-radius: 8px;
    margin-top: 30px;
}

.mission h2 {
    color: white;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.mission p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    margin-bottom: 0;
}

footer {
    background: #2d3748;
    color: #a0aec0;
    padding: 30px 0;
    text-align: center;
    margin-top: 40px;
}

footer p {
    margin-bottom: 5px;
    color: #a0aec0;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    header {
        padding: 40px 0;
    }
    
    header h1 {
        font-size: 2rem;
    }
    
    header .subtitle {
        font-size: 1rem;
    }
    
    .privacy-content {
        padding: 25px;
    }
    
    .contact-details {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    h2 {
        font-size: 1.4rem;
    }
    
    h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 1.8rem;
    }
    
    .privacy-content {
        padding: 20px;
    }
    
    .contact-info {
        padding: 20px;
    }
    
    .contact-item {
        padding: 15px;
    }
    
    .mission {
        padding: 20px;
    }
}

/* Print styles */
@media print {
    header {
        background: none;
        color: #333;
        box-shadow: none;
    }
    
    .privacy-content {
        box-shadow: none;
        background: white;
    }
    
    .contact-info {
        background: white;
        border: 1px solid #ccc;
    }
    
    .mission {
        background: white;
        color: #333;
        border: 1px solid #ccc;
    }
    
    .mission h2 {
        color: #333;
        border-bottom: 1px solid #ccc;
    }
    
    .mission p {
        color: #333;
    }
}
