/* Reset default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #1a1a1a;
    color: #e0e0e0;
    min-height: 100vh;
    position: relative;
    padding-bottom: 60px;
}

/* Main Content */
main {
    max-width: 1000px;
    margin: 2rem auto;
    padding: 0 2rem;
}

h1 {
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #333;
}

h2 {
    color: #ffffff;
    margin: 2rem 0 1rem 0;
    font-size: 1.5rem;
}

p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Links in main content */
main a {
    color: #66b1ff;
    text-decoration: none;
    transition: color 0.3s ease;
}

main a:hover {
    color: #99ccff;
    text-decoration: underline;
}

/* Lists */
ol, ul {
    margin: 1rem 0 1.5rem 2rem;
}

li {
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

/* Footer */
footer {
    background-color: #222;
    padding: 1rem;
    text-align: center;
    position: absolute;
    bottom: 0;
    width: 100%;
    border-top: 1px solid #333;
}

footer a {
    color: #4a9eff;
    text-decoration: none;
    margin: 0 1rem;
    font-size: 0.9rem;
}

footer a:hover {
    text-decoration: underline;
    color: #66b1ff;
}

/* Policy specific styles */
.policy-section {
    margin-bottom: 4rem;
}

/* Emphasis */
strong, em {
    color: #ffffff;
}

/* Add these new styles for the table of contents */
.table-of-contents {
    background-color: #222;
    padding: 2rem;
    border-radius: 4px;
    margin: 2rem 0;
}

.table-of-contents h2 {
    margin-top: 0;
    color: #fff;
    font-size: 1.3rem;
}

.table-of-contents ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.table-of-contents li {
    margin: 0.5rem 0;
    padding: 0;
}

.table-of-contents a {
    color: #4a9eff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.table-of-contents a:hover {
    color: #66b1ff;
    text-decoration: underline;
}

/* Add smooth scrolling for section navigation */
html {
    scroll-behavior: smooth;
}
