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

:root {
    --primary-color: #6366f1;
    --secondary-color: #4f46e5;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --background-light: #f9fafb;
    --border-color: #e5e7eb;
    --white: #ffffff;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-light);
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 60px 20px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

.header-content .tagline {
    font-size: 1.2rem;
    opacity: 0.95;
    font-weight: 300;
}

/* Main Content */
main {
    padding: 40px 0;
}

.policy-content {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.last-updated {
    background-color: var(--background-light);
    padding: 15px;
    border-left: 4px solid var(--primary-color);
    margin-bottom: 30px;
    border-radius: 4px;
    font-size: 0.95rem;
    color: var(--text-light);
}

.intro {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.8;
}

section {
    margin-bottom: 35px;
}

section h2 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border-color);
}

section h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}

section p {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.8;
}

section ul {
    margin-left: 25px;
    margin-bottom: 15px;
}

section li {
    color: var(--text-light);
    margin-bottom: 12px;
    line-height: 1.7;
}

section li strong {
    color: var(--text-dark);
}

code {
    background-color: var(--background-light);
    padding: 2px 6px;
    border-radius: 3px;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
    color: #d946ef;
}

.contact-box {
    background-color: var(--background-light);
    padding: 20px;
    border-radius: 6px;
    border-left: 4px solid var(--primary-color);
    margin-top: 15px;
}

.contact-box p {
    margin: 0;
}

.contact-box a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-box a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Footer */
footer {
    background-color: var(--text-dark);
    color: var(--white);
    text-align: center;
    padding: 30px 20px;
    margin-top: 50px;
    font-size: 0.9rem;
}

footer p {
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content h1 {
        font-size: 2rem;
    }

    .header-content .tagline {
        font-size: 1rem;
    }

    .policy-content {
        padding: 25px;
    }

    section h2 {
        font-size: 1.4rem;
    }

    section h3 {
        font-size: 1.1rem;
    }

    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    header {
        padding: 40px 15px;
    }

    .header-content h1 {
        font-size: 1.6rem;
    }

    .header-content .tagline {
        font-size: 0.9rem;
    }

    .policy-content {
        padding: 20px;
    }

    section h2 {
        font-size: 1.2rem;
    }

    section h3 {
        font-size: 1rem;
    }

    section ul {
        margin-left: 20px;
    }
}

/* Print Styles */
@media print {
    body {
        background: var(--white);
    }

    header {
        page-break-after: avoid;
    }

    section {
        page-break-inside: avoid;
    }
}
