:root {
    --primary-color: #1a73e8;
    --secondary-color: #34a853;
    --danger-color: #ea4335;
    --text-dark: #202124;
    --text-light: #5f6368;
    --bg-light: #f8f9fa;
    --border-color: #dadce0;
    --shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    --shadow-lg: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #fff;
}

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

/* Header */
header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 60px 20px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

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

.tagline {
    font-size: 1.1rem;
    opacity: 0.95;
}

/* Breadcrumb */
.breadcrumb {
    background-color: var(--bg-light);
    padding: 15px 20px;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 40px;
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s;
}

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

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

/* Table of Contents */
.toc {
    background-color: var(--bg-light);
    border-left: 4px solid var(--primary-color);
    padding: 25px;
    margin-bottom: 40px;
    border-radius: 4px;
}

.toc h2 {
    margin-bottom: 15px;
    color: var(--text-dark);
}

.toc ul {
    list-style: none;
}

.toc li {
    margin: 8px 0;
}

.toc a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s;
}

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

/* Policy Sections */
.policy-section {
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.policy-section:last-of-type {
    border-bottom: none;
}

.policy-section h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--text-dark);
    border-left: 4px solid var(--primary-color);
    padding-left: 15px;
}

.policy-section h3 {
    font-size: 1.3rem;
    margin-top: 25px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

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

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

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

.policy-section strong {
    color: var(--text-dark);
    font-weight: 600;
}

.policy-section a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s;
}

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

/* Highlight Box */
.highlight {
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 15px;
    margin: 20px 0;
    border-radius: 4px;
    font-size: 0.95rem;
}

/* Contact Info Box */
.contact-info {
    background-color: var(--bg-light);
    padding: 20px;
    border-radius: 4px;
    margin: 20px 0;
    border: 1px solid var(--border-color);
}

.contact-info p {
    margin: 0;
}

.contact-info a {
    color: var(--primary-color);
    text-decoration: none;
}

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

/* Footer */
footer {
    background-color: var(--bg-light);
    border-top: 1px solid var(--border-color);
    padding: 40px 20px;
    margin-top: 60px;
}

.footer-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: var(--text-light);
}

.footer-content p {
    margin-bottom: 15px;
}

.footer-links a {
    color: var(--primary-color);
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s;
}

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

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

    .tagline {
        font-size: 0.95rem;
    }

    .policy-section h2 {
        font-size: 1.4rem;
    }

    .policy-section h3 {
        font-size: 1.1rem;
    }

    .container {
        padding: 0 15px;
    }

    .toc {
        padding: 15px;
    }
}

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

    header h1 {
        font-size: 1.5rem;
    }

    .breadcrumb {
        font-size: 0.8rem;
        padding: 10px 15px;
    }

    .policy-section {
        margin-bottom: 30px;
        padding-bottom: 20px;
    }

    .policy-section h2 {
        font-size: 1.2rem;
    }

    .policy-section h3 {
        font-size: 1rem;
    }
}

/* Print Styles */
@media print {
    header, .breadcrumb, footer {
        display: none;
    }

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

    a {
        color: inherit;
    }
}

