@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Sora:wght@600;700;800&display=swap');

:root {
    --bg: #f6f8fc;
    --surface: #ffffff;
    --surface-soft: #f2f5fb;
    --text: #111827;
    --muted: #55627a;
    --line: #dbe2ee;
    --brand: #f04452;
    --brand-dark: #c81f36;
    --shadow-soft: 0 10px 35px rgba(16, 24, 40, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Manrope', 'Segoe UI', sans-serif;
    background: radial-gradient(circle at 10% -20%, #ffe7ea 0%, transparent 35%), radial-gradient(circle at 90% 0%, #e8f0ff 0%, transparent 40%), var(--bg);
    color: var(--text);
    line-height: 1.75;
}

.container {
    width: min(1000px, 92%);
    margin: 0 auto;
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(219, 226, 238, 0.9);
    padding: 0.9rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    color: #111827;
    font-weight: 800;
    letter-spacing: -0.02em;
    font-size: 1.15rem;
}

.logo-img {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 8px 16px rgba(17, 24, 39, 0.2);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.nav-links a {
    color: #5c6a82;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: var(--brand-dark);
}

.policy-container {
    padding: 54px 0;
}

.policy-container > .container {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    padding: clamp(20px, 4vw, 34px);
}

.policy-container h1 {
    font-family: 'Sora', 'Manrope', sans-serif;
    font-size: clamp(1.6rem, 4.8vw, 2.5rem);
    color: #111827;
    margin-bottom: 0.45rem;
}

.last-updated {
    color: #64748b;
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

section {
    margin-bottom: 2rem;
    padding-bottom: 1.35rem;
    border-bottom: 1px solid var(--line);
}

section:last-child {
    border-bottom: none;
}

h2 {
    font-size: clamp(1.3rem, 3.4vw, 1.7rem);
    margin-bottom: 0.95rem;
    color: #101828;
}

h3 {
    font-size: 1.08rem;
    margin-top: 1rem;
    margin-bottom: 0.65rem;
    color: #344054;
}

h4 {
    font-size: 1rem;
    margin-top: 0.9rem;
    margin-bottom: 0.55rem;
    color: #475467;
}

p {
    color: #475467;
    margin-bottom: 0.8rem;
}

ul {
    margin-left: 1.35rem;
    margin-bottom: 1rem;
}

li {
    margin-bottom: 0.45rem;
    color: #475467;
}

a {
    color: var(--brand-dark);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.contact-box {
    background: #fff4f5;
    border: 1px solid #ffd7de;
    border-left: 4px solid var(--brand);
    border-radius: 12px;
    padding: 1rem;
    margin: 1rem 0;
}

.contact-box p {
    margin-bottom: 0.45rem;
}

.contact-box strong {
    color: #9f1239;
}

code {
    background: var(--surface-soft);
    border: 1px solid var(--line);
    padding: 0 6px;
    border-radius: 6px;
    font-family: 'Consolas', 'Courier New', monospace;
    color: #344054;
}

.footer {
    background: #fbfcff;
    border-top: 1px solid var(--line);
    margin-top: 42px;
    padding: 26px 0 18px;
}

.footer-bottom {
    text-align: center;
    color: #8a94a8;
}

@media (max-width: 768px) {
    .navbar .container {
        flex-direction: column;
        gap: 0.8rem;
    }

    .nav-links {
        gap: 0.9rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .policy-container {
        padding: 34px 0;
    }
}
