/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, sans-serif;
    background: #0b0b10;
    color: #eaeaf0;
    line-height: 1.7;
}

/* LAYOUT */
.wrap {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

/* HEADER */
.privacy-header {
    position: sticky;
    top: 0;
    background: rgba(11, 11, 16, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.privacy-header .wrap {
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-weight: 700;
    text-decoration: none;
    color: #fff;
}

nav a {
    margin-left: 16px;
    text-decoration: none;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

nav a:hover {
    color: #fff;
}

/* CONTENT */
.privacy-content {
    padding: 48px 0;
}

h1 {
    font-size: 32px;
    margin-bottom: 12px;
}

.updated {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 32px;
}

h2 {
    font-size: 22px;
    margin-top: 48px;
    margin-bottom: 12px;
}

h3 {
    font-size: 18px;
    margin-top: 24px;
}

p {
    margin-bottom: 16px;
    color: rgba(255,255,255,0.85);
}

ul {
    margin: 12px 0 24px 20px;
}

li {
    margin-bottom: 8px;
}

a {
    color: #ff5e8e;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.contact-email {
    font-size: 18px;
    margin-top: 8px;
}

.links {
    margin-top: 32px;
    font-size: 14px;
    color: rgba(255,255,255,0.6);
}

/* FOOTER */
.privacy-footer {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 24px 0;
    font-size: 14px;
    color: rgba(255,255,255,0.6);
}

.privacy-footer .wrap {
    display: flex;
    justify-content: space-between;
}

/* DESKTOP */
@media (min-width: 768px) {
    h1 {
        font-size: 38px;
    }

    h2 {
        font-size: 24px;
    }
}
