main.user-privacy {
    padding: 4rem 1.5rem;
    background: #02275c;
    color: #e6e6f0;
    min-height: 80vh;
}
main.user-privacy .container {
    max-width: 900px;
    margin: 0 auto;
}
main.user-privacy h1 {
    font-size: clamp(2.2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 0.5rem;
}
main.user-privacy .terms {
    display: grid;
    gap: 1.5rem;
}
main.user-privacy .terms section {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
main.user-privacy .terms section h2 {
    margin-top: 0;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
main.user-privacy .terms section h2 span {
    font-size: 0.75rem;
    font-weight: 600;
    color: #7c7cff;
    background: rgba(124,124,255,0.15);
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
main.user-privacy .terms section p {
    margin: 0.75rem 0 0;
    color: white;
}
main.user-privacy hr {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.15), transparent);
    margin: 3rem 0 2rem;
}
main.user-privacy p.footer-text {
    text-align: center;
    font-size: 0.85rem;
    color: white;
}