/* Base Styles */
:root {
    --primary-color: #2c3e50;
    --secondary-color: #34495e;
    --accent-color: #3498db;
    --text-color: #333;
    --background-color: #f8f9fa;
    --border-color: #e0e0e0;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.8;
    color: var(--text-color);
    background: var(--background-color);
    margin: 0;
    padding: 0;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    background: white;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
}

.privacy-policy-section {
    padding: 60px 0;
    min-height: 100vh;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* Typography */
h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--accent-color);
    text-align: center;
}

h2 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin: 2rem 0 1rem;
    padding-left: 15px;
    border-left: 4px solid var(--accent-color);
}

p {
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

/* Lists */
ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 2rem;
}

li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 1rem;
}

li:before {
    content: "•";
    color: var(--accent-color);
    font-size: 1.2em;
    position: absolute;
    left: 0;
    top: -2px;
}

/* Links */
a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
    border-bottom: 1px dotted var(--accent-color);
}

a:hover {
    color: #2980b9;
}

/* Strong Tags */
strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.container > * {
    animation: fadeIn 0.5s ease-out forwards;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .container {
        padding: 20px 15px;
        margin: 15px;
        border-radius: 8px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.3rem;
    }

    .privacy-policy-section {
        padding: 30px 0;
    }
}

@media screen and (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.2rem;
    }

    .container {
        margin: 10px;
        padding: 15px 12px;
    }

    li {
        padding-left: 20px;
    }
}

/* Print Styles */
@media print {
    .container {
        box-shadow: none;
        max-width: 100%;
    }

    body {
        background: white;
        color: black;
    }

    a {
        text-decoration: none;
        color: black;
    }
}