html,
body {
    overflow-y: auto !important;
    height: auto !important;
    margin: 0;
}

body {
    background: linear-gradient(180deg, #f4f7fb 0%, #eef3f9 100%);
}

.app-header {
    position: sticky;
    top: 0;
    z-index: 50;
}

.policy-page {
    padding: 32px 20px 48px;
}

.policy-container {
    max-width: 980px;
    margin: 0 auto;
}

.policy-card {
    background: #ffffff;
    border: 1px solid #dfe1e6;
    border-radius: 16px;
    box-shadow: 0 14px 40px rgba(9, 30, 66, 0.08);
    padding: 32px;
}

.policy-kicker {
    display: inline-flex;
    align-items: center;
    margin-bottom: 14px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(0, 82, 204, 0.08);
    color: var(--color-primary);
    font-weight: 600;
    font-size: 13px;
}

.policy-card h1 {
    font-size: clamp(28px, 3.4vw, 38px);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0;
    color: #0f254d;
}

.policy-updated {
    margin-top: 12px;
    font-size: 14px;
    color: #5e6c84;
}

.policy-section {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #ebecf0;
}

.policy-section h2 {
    margin: 0 0 12px;
    font-size: 20px;
    line-height: 1.25;
    color: #172b4d;
}

.policy-section p,
.policy-section li {
    font-size: 16px;
    line-height: 1.65;
    color: #243757;
}

.policy-section p {
    margin: 0 0 10px;
}

.policy-section ul {
    margin: 0;
    padding-left: 22px;
    list-style: disc;
}

.policy-section li + li {
    margin-top: 8px;
}

.policy-contact a {
    color: var(--color-primary);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
}

.policy-contact a:hover {
    border-bottom-color: currentColor;
}

@media (max-width: 768px) {
    .policy-page {
        padding: 20px 12px 28px;
    }

    .policy-card {
        padding: 20px 16px;
        border-radius: 12px;
    }

    .policy-section h2 {
        font-size: 18px;
    }

    .policy-section p,
    .policy-section li {
        font-size: 15px;
        line-height: 1.6;
    }
}