/* Sincely Privacy Policy Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
    padding: 20px;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px 30px;
    text-align: center;
}

header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.subtitle {
    font-size: 1.1rem;
    opacity: 0.95;
    font-weight: 500;
}

main {
    padding: 40px 30px;
}

.last-updated {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 30px;
    font-style: italic;
}

section {
    margin-bottom: 32px;
}

h2 {
    color: #667eea;
    font-size: 1.5rem;
    margin-bottom: 16px;
    font-weight: 600;
}

p {
    margin-bottom: 12px;
    color: #444;
}

ul {
    margin-left: 20px;
    margin-bottom: 16px;
}

li {
    margin-bottom: 8px;
    color: #555;
}

strong {
    color: #333;
    font-weight: 600;
}

a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

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

footer {
    background: #f8f9fa;
    padding: 20px 30px;
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    border-top: 1px solid #e9ecef;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    body {
        padding: 10px;
    }

    header {
        padding: 30px 20px;
    }

    header h1 {
        font-size: 2rem;
    }

    main {
        padding: 30px 20px;
    }

    h2 {
        font-size: 1.3rem;
    }
}
