.page-wrapper {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 112px 24px 80px;
    gap: 64px;
}

.sidebar {
    width: 220px;
    flex-shrink: 0;
    position: sticky;
    top: 112px;
    height: fit-content;
}

.sidebar-title {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sidebar-nav a {
    display: block;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s;
}

.sidebar-nav a:hover {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.sidebar-nav a.active {
    background: var(--text-primary);
    color: white;
}

.content {
    flex: 1;
    min-width: 0;
}

.content h1 {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.content .last-updated {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 48px;
}

.policy-section {
    margin-bottom: 48px;
}

.policy-section h2 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.policy-section p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 12px;
}

.policy-section ul {
    margin: 12px 0;
    padding-left: 20px;
}

.policy-section li {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 8px;
}

footer {
    padding: 48px 0;
    border-top: 1px solid var(--border-light);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-copy {
    font-size: 13px;
    color: var(--text-muted);
}

@media (max-width: 900px) {
    .page-wrapper {
        flex-direction: column;
        padding-top: 100px;
    }

    .sidebar {
        width: 100%;
        position: static;
        margin-bottom: 32px;
    }

    .sidebar-nav {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
    }

    .sidebar-nav a {
        padding: 8px 14px;
        font-size: 13px;
    }

    .content h1 {
        font-size: 28px;
    }
}