.privacy-page-bg {
    position: relative;
    min-height: 100vh;
    color: #fff;
}

.privacy-page-bg::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;

    background: radial-gradient(circle at bottom left,
            #222d5a 0%,
            #000000 60%);

    background-size: cover;
}

.legal-content {
    max-width: 800px;
    margin: 5rem auto;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    line-height: 1.8;
}

.legal-title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.last-updated {
    color: #a78afe;
    font-size: 0.9rem;
    margin-bottom: 2.5rem;
}

.legal-section h2 {
    font-size: 1.5rem;
    margin-top: 2rem;
    color: #ffc978;
}

.legal-section p {
    color: #cccccc;
    margin-bottom: 1rem;
}

body {
    overflow: auto !important;
}