/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2563EB;
    --secondary-color: #0F766E;
    --text-dark: #1F2937;
    --text-light: #6B7280;
    --bg-light: #F9FAFB;
    --bg-white: #FFFFFF;
    --border-color: #E5E7EB;
    --accent-color: #10B981;
    --shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

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(--bg-light);
    font-size: 16px;
}

/* Container */
.container {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--bg-white);
    box-shadow: var(--shadow-lg);
    min-height: 100vh;
}

/* Header */
header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 2.5rem 2rem;
    text-align: center;
}

.logo-section h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.tagline {
    font-size: 1.1rem;
    opacity: 0.95;
    font-weight: 300;
}

/* Breadcrumb */
.breadcrumb {
    background-color: var(--bg-light);
    padding: 1rem 2rem;
    border-bottom: 1px solid var(--border-color);
}

.breadcrumb a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.breadcrumb a.active {
    color: var(--primary-color);
    font-weight: 600;
}

/* Main Content */
.content {
    padding: 2rem;
}

/* Intro Section */
.intro {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--border-color);
}

.intro h2 {
    font-size: 2.25rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.last-updated {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.last-updated span {
    font-weight: 600;
    color: var(--primary-color);
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

/* Policy Sections */
.policy-section {
    margin-bottom: 2.5rem;
    animation: fadeIn 0.6s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.policy-section h3 {
    font-size: 1.75rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--primary-color);
    display: inline-block;
}

.policy-section h4 {
    font-size: 1.25rem;
    color: var(--secondary-color);
    margin: 1.5rem 0 0.75rem 0;
    font-weight: 600;
}

.policy-section p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.policy-section ul {
    margin: 1rem 0 1rem 1.5rem;
    line-height: 1.8;
}

.policy-section li {
    margin-bottom: 0.75rem;
    color: var(--text-light);
    position: relative;
    padding-left: 0.5rem;
}

.policy-section li::marker {
    color: var(--primary-color);
}

.policy-section ul ul {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.policy-section strong {
    color: var(--text-dark);
    font-weight: 600;
}

.policy-section a {
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.policy-section a:hover {
    border-bottom-color: var(--primary-color);
}

/* Contact Info */
.contact-info {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    margin-top: 1rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact-info a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    background-color: var(--text-dark);
    color: white;
    padding: 2rem;
    text-align: center;
    margin-top: 3rem;
}

.footer-content p {
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.footer-links {
    margin-top: 1rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    margin: 0 1rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        box-shadow: none;
    }

    header {
        padding: 2rem 1.5rem;
    }

    .logo-section h1 {
        font-size: 2rem;
    }

    .tagline {
        font-size: 1rem;
    }

    .content {
        padding: 1.5rem;
    }

    .intro h2 {
        font-size: 1.75rem;
    }

    .policy-section h3 {
        font-size: 1.5rem;
    }

    .policy-section h4 {
        font-size: 1.1rem;
    }

    .breadcrumb {
        padding: 1rem 1.5rem;
    }

    footer {
        padding: 1.5rem;
    }

    .footer-links a {
        display: block;
        margin: 0.5rem 0;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 15px;
    }

    .logo-section h1 {
        font-size: 1.75rem;
    }

    .intro h2 {
        font-size: 1.5rem;
    }

    .policy-section h3 {
        font-size: 1.25rem;
    }

    .content {
        padding: 1rem;
    }

    .policy-section ul {
        margin-left: 1rem;
    }
}

/* Print Styles */
@media print {
    body {
        background-color: white;
    }

    .container {
        box-shadow: none;
    }

    header {
        background: white;
        color: black;
        border-bottom: 2px solid black;
    }

    .breadcrumb,
    footer {
        display: none;
    }

    .policy-section {
        page-break-inside: avoid;
    }

    a {
        color: black;
        text-decoration: underline;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection Color */
::selection {
    background-color: var(--primary-color);
    color: white;
}

::-moz-selection {
    background-color: var(--primary-color);
    color: white;
}
