/* Legal Content Styling */
.legal-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border);
}

.legal-content h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--foreground);
    opacity: 0.9;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-content p {
    color: var(--muted-foreground);
    line-height: 1.8;
    margin-bottom: 1rem;
}

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

.legal-content ul li {
    position: relative;
    padding-left: 1.5rem;
    color: var(--muted-foreground);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.legal-content ul li::before {
    content: '›';
    position: absolute;
    left: 0;
    color: var(--foreground);
    font-weight: bold;
    font-size: 1.2rem;
}

.legal-content a {
    color: var(--foreground);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: opacity 0.2s;
}

.legal-content a:hover {
    opacity: 0.7;
}

.legal-content strong {
    color: var(--foreground);
    font-weight: 600;
}

/* Data Table (from privacy.html) */
.data-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.data-table th {
    background: var(--secondary);
    color: var(--secondary-foreground);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.75rem 1rem;
    text-align: left;
}

.data-table th:first-child {
    border-radius: 0.5rem 0 0 0;
}

.data-table th:last-child {
    border-radius: 0 0.5rem 0 0;
}

.data-table td {
    padding: 0.75rem 1rem;
    color: var(--muted-foreground);
    font-size: 0.875rem;
    border-bottom: 1px solid var(--border);
}

.data-table tr:last-child td {
    border-bottom: none;
}

.data-table tr:hover td {
    background: var(--secondary);
    opacity: 0.8;
}

/* Section Number Badge */
.section-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 0.5rem;
    background: var(--secondary);
    color: var(--secondary-foreground);
    font-weight: 700;
    font-size: 0.875rem;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

/* Scroll Progress Bar */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--foreground);
    z-index: 9999;
    transition: width 0.1s linear;
}
