#privacy-policy-page {
    width: 90%;
    max-width: 1100px;
    margin: 100px auto 50px auto;
    padding: 40px 20px;
    background: var(--se-bg);
    border: 1px solid var(--se-border);
    border-radius: var(--se-radius);
    box-shadow: var(--se-shadow);
    overflow: hidden;
}

.privacy-policy-hero {
    text-align: left;
    padding: 18px 28px 8px;
    background:
        radial-gradient(1200px 1200px at 100% -200px, rgba(14, 165, 233, 0.08), transparent 60%),
        linear-gradient(#fff, #fff);
    border-bottom: 1px solid var(--se-border);
    border-radius: var(--se-radius) var(--se-radius) 0 0;
    margin-left: -20px;
    margin-right: -20px;
    margin-top: -40px;
}

.privacy-policy-hero .pp-sub {
    margin: 6px 0 0 3px;
    color: var(--se-accent);
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-size: .9rem;
}

.privacy-policy-hero h2 {
    font-size: 1.9rem;
    line-height: 1.2;
    font-weight: bold;
    margin-bottom: 8px;
    color: var(--se-text);
    letter-spacing: .01em;
}

.privacy-policy-hero .pp-disc {
    margin: 6px 0 0;
    color: var(--se-muted);
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-size: .9rem;
}

.privacy-policy-content {
    padding: 0;
}

.privacy-policy-content h2 {
    font-size: 1.05rem;
    letter-spacing: .06em;
    color: var(--se-text);
    padding-left: 10px;
    border-left: 4px solid var(--se-accent);
    margin-top: 40px;
    margin-bottom: 15px;
}

.privacy-policy-content p {
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 10px;
    color: var(--se-text);
}

.pp-list {
    margin: 0;
    padding-left: .8em;
    color: var(--se-text);
    line-height: 0.5;
}

.pp-steps {
    counter-reset: step;
    list-style: none;
    padding: 0;
    margin: 0;
}

.pp-steps li {
    position: relative;
    padding-left: 32px;
    margin: 10px 0;
    line-height: 1.8;
}

.pp-steps li {
    margin-bottom: 1em;
    font-size: 0.9rem;
}

.pp-steps li::before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    left: 0;
    top: 1px;
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    font-size: .7rem;
    color: #fff;
    background: var(--se-accent);
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(14, 165, 233, .2);
}

.pp-tag-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pp-tag {
    width: 120px;
    height: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .8rem;
    color: #fff;
    background: var(--se-accent);
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(14, 165, 233, .2);
    padding: 0 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.pp-tag-container p {
    margin-top: 10px;
}