:root {
    --primary: #2680eb;
    --primary-dark: #0a3d91;
    --accent: #00e5c8;
    --bg: #f4f8ff;
    --bg-soft: #ffffff;
    --text: #122037;
    --text-muted: #52627f;
    --border: rgba(18, 32, 55, 0.12);
    --shadow-lg: 0 26px 56px rgba(10, 61, 145, 0.14);
    --radius: 20px;
    --radius-sm: 12px;
}

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

html,
body {
    width: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 8% 12%, rgba(38, 128, 235, 0.18), transparent 36%),
        radial-gradient(circle at 92% 4%, rgba(0, 229, 200, 0.15), transparent 30%),
        linear-gradient(180deg, #edf5ff 0%, #f8fbff 48%, #f4f8ff 100%);
    line-height: 1.75;
    min-height: 100vh;
}

a {
    color: var(--primary-dark);
}

a:hover {
    color: var(--primary);
}

.policy-bg {
    position: fixed;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: -1;
}

.orb {
    position: absolute;
    border-radius: 999px;
    filter: blur(30px);
    opacity: 0.4;
}

.orb-1 {
    width: 280px;
    height: 280px;
    left: -80px;
    top: 120px;
    background: #8dc3ff;
}

.orb-2 {
    width: 340px;
    height: 340px;
    right: -120px;
    top: 260px;
    background: #88efe3;
}

.orb-3 {
    width: 240px;
    height: 240px;
    left: 50%;
    top: 74%;
    transform: translateX(-50%);
    background: #a8bfff;
}

.policy-header {
    max-width: 1120px;
    margin: 0 auto;
    padding: 26px 24px 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.brand-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 800;
    color: var(--text);
    letter-spacing: 0.01em;
}

.brand-link img {
    border-radius: 10px;
}

.header-actions {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.lang-switch {
    display: inline-flex;
    align-items: center;
    padding: 4px;
    gap: 2px;
    border-radius: 999px;
    background: rgba(226, 232, 240, 0.6);
    border: 1px solid rgba(148, 163, 184, 0.3);
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
}

.lang-btn {
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: #365175;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.lang-btn:hover {
    color: var(--primary-dark);
    background: rgba(38, 128, 235, 0.15);
}

.lang-btn.is-active {
    background: var(--primary);
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(38, 128, 235, 0.4);
}

.home-link {
    text-decoration: none;
    font-weight: 600;
    color: var(--primary-dark);
    border: 1px solid rgba(10, 61, 145, 0.18);
    background: rgba(255, 255, 255, 0.62);
    padding: 10px 14px;
    border-radius: 999px;
    transition: all 0.24s ease;
}

.home-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(10, 61, 145, 0.14);
}

.policy-main {
    max-width: 1120px;
    margin: 0 auto;
    padding: 14px 24px 72px;
}

.policy-hero {
    max-width: 800px;
    margin: 24px 0 28px;
}

.eyebrow {
    display: inline-block;
    border-radius: 999px;
    background: rgba(38, 128, 235, 0.1);
    color: var(--primary-dark);
    padding: 6px 12px;
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 14px;
}

.policy-hero h1 {
    font-size: clamp(2rem, 4.6vw, 3rem);
    line-height: 1.14;
    margin-bottom: 16px;
    color: #09152b;
}

.policy-hero p {
    color: var(--text-muted);
    max-width: 720px;
}

.meta-row {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.meta-row span {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(18, 32, 55, 0.08);
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 0.86rem;
    font-weight: 600;
    color: #304461;
}

.policy-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.92));
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius);
    padding: clamp(20px, 4vw, 44px);
}

.policy-card section + section {
    border-top: 1px dashed rgba(18, 32, 55, 0.14);
    margin-top: 22px;
    padding-top: 22px;
}

.policy-card h2 {
    font-size: clamp(1.1rem, 2.6vw, 1.5rem);
    line-height: 1.28;
    margin-bottom: 12px;
    color: #10223d;
}

.policy-card p {
    color: #2d3f5b;
}

.policy-card ul {
    margin-top: 10px;
    padding-left: 20px;
    color: #2d3f5b;
}

.policy-card li + li {
    margin-top: 7px;
}

@media (max-width: 760px) {
    .policy-header {
        padding-top: 18px;
        flex-wrap: wrap;
    }

    .header-actions {
        width: 100%;
        justify-content: space-between;
    }

    .home-link {
        font-size: 0.9rem;
        padding: 8px 12px;
    }

    .policy-main {
        padding-left: 16px;
        padding-right: 16px;
    }

    .policy-hero {
        margin-top: 10px;
    }
}