/* Legal Pages Shared Styles */
:root {
    --primary-color: #222831;
    --secondary-color: #393E46;
    --text-color: #333333;
    --light-gray: #f8f9fa;
    --border-color: #e9ecef;
    --link-color: #222831;
    --link-hover: #393E46;
}

/* Base Styles */
body {
    font-family: 'Lora', serif;
    color: var(--text-color);
    line-height: 1.8;
    background-color: #fff;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    animation: fadeIn 0.6s ease-out;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    color: var(--primary-color);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

h1 {
    font-size: 2.25rem;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

h2 {
    font-size: 1.75rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    margin-top: 3rem;
    scroll-margin-top: 80px; /* For anchor links with fixed header */
}

h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

p, li {
    margin-bottom: 1.25rem;
    font-size: 1.1rem;
}

/* Links */
a {
    color: var(--link-color);
    text-decoration: underline;
    text-underline-offset: 0.2em;
    transition: color 0.2s ease;
}

a:hover, a:focus {
    color: var(--link-hover);
    text-decoration: none;
}

/* Lists */
ul, ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

li {
    margin-bottom: 0.5rem;
}

/* Table of Contents */
.toc {
    background-color: var(--light-gray);
    border-radius: 8px;
    padding: 1.5rem 2rem;
    margin: 2.5rem 0;
}

.toc h2 {
    margin-top: 0;
    padding-top: 0;
    border: none;
}

.toc ul {
    list-style: none;
    padding-left: 0;
    margin: 1rem 0 0 0;
}

.toc > ul > li {
    margin-bottom: 1rem;
}

.toc ul ul {
    padding-left: 1.5rem;
    margin: 0.5rem 0 0 0;
}

.toc a {
    text-decoration: none;
    color: var(--secondary-color);
    display: block;
    padding: 0.25rem 0;
}

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

/* Sitemap Specific */
.sitemap ul {
    list-style: none;
    padding-left: 0;
}

.sitemap > ul > li {
    margin-bottom: 1.5rem;
}

.sitemap a {
    font-weight: 500;
    text-decoration: none;
}

.sitemap ul ul {
    margin-top: 0.5rem;
    padding-left: 1.5rem;
}

.sitemap ul ul a {
    font-weight: normal;
    color: var(--secondary-color);
}

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

/* Responsive Adjustments */
@media (max-width: 768px) {
    .legal-container {
        padding: 1.5rem 1rem;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.25rem;
    }
    
    .toc {
        padding: 1.25rem 1.5rem;
    }
}
