body.policy-page {
    justify-content: flex-start;
    padding: 20px;
    min-height: 100vh;
}

.policy-header {
    width: 100%;
    max-width: 900px;
    z-index: 1;
    padding: 20px 0 30px;
}

.policy-logo-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.policy-logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
}

.policy-logo-text {
    height: 22px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.policy-container {
    width: 100%;
    max-width: 900px;
    z-index: 1;
    padding-bottom: 40px;
}

.policy-content {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 50px;
    text-align: left;
    backdrop-filter: blur(10px);
}

.policy-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.policy-updated {
    color: var(--gray-text);
    font-size: 0.9rem;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.policy-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-top: 40px;
    margin-bottom: 16px;
    padding-top: 20px;
}

.policy-content h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--white);
    margin-top: 28px;
    margin-bottom: 12px;
}

.policy-content p {
    color: var(--gray-text);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.policy-content a {
    color: var(--accent-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.policy-content a:hover {
    color: #60a5fa;
    text-decoration: underline;
}

.policy-content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 16px;
}

.policy-content ul li {
    color: var(--gray-text);
    font-size: 0.95rem;
    line-height: 1.8;
    padding-left: 24px;
    position: relative;
    margin-bottom: 6px;
}

.policy-content ul li::before {
    content: "";
    position: absolute;
    left: 8px;
    top: 11px;
    width: 6px;
    height: 6px;
    background: var(--accent-blue);
    border-radius: 50%;
}

.policy-content ul ul {
    margin-top: 6px;
    margin-bottom: 6px;
}

.policy-content strong {
    color: var(--white);
    font-weight: 600;
}

.policy-content em {
    color: #b0bec5;
}

.policy-toc {
    background: rgba(59, 130, 246, 0.05);
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: 12px;
    padding: 24px 30px;
    margin: 24px 0;
}

.policy-toc ol {
    padding-left: 20px;
    margin: 0;
}

.policy-toc li {
    color: var(--accent-blue);
    font-size: 0.9rem;
    line-height: 2;
}

.policy-toc a {
    color: var(--accent-blue);
    text-decoration: none;
}

.policy-toc a:hover {
    text-decoration: underline;
}

.policy-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 0.85rem;
}

.policy-table th,
.policy-table td {
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 16px;
    text-align: left;
    color: var(--gray-text);
}

.policy-table th {
    background: rgba(59, 130, 246, 0.1);
    color: var(--white);
    font-weight: 600;
}

.policy-table tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.02);
}

.policy-page footer {
    padding: 30px 0 10px;
}

@media (max-width: 600px) {
    .policy-content {
        padding: 25px 20px;
    }

    .policy-title {
        font-size: 1.75rem;
    }

    .policy-content h2 {
        font-size: 1.25rem;
    }

    .policy-content h3 {
        font-size: 1.05rem;
    }

    .policy-content p,
    .policy-content ul li {
        font-size: 0.9rem;
    }

    .policy-table {
        display: block;
        overflow-x: auto;
        font-size: 0.8rem;
    }

    .policy-table th,
    .policy-table td {
        padding: 8px 10px;
        min-width: 120px;
    }

    .policy-toc {
        padding: 16px 20px;
    }
}
