.policy-page {
    min-height: 100vh;
    padding: 100px 20px 60px;
}

.policy-container {
    max-width: 800px;
    margin: 0 auto;
}

.policy-header {
    text-align: center;
    margin-bottom: 48px;
}

.policy-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 8px;
}

.policy-subtitle {
    font-size: 1.25rem;
    color: var(--accent);
    font-weight: 600;
    margin: 0 0 12px;
}

.policy-date {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0;
}

.policy-content {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px;
}

.policy-section {
    margin-bottom: 32px;
}

.policy-section:last-child {
    margin-bottom: 0;
}

.policy-section h2 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
}

.policy-section p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0 0 12px;
}

.policy-section p:last-child {
    margin-bottom: 0;
}

.policy-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.policy-section li {
    color: var(--text-secondary);
    line-height: 1.7;
    padding: 8px 0 8px 24px;
    position: relative;
}

.policy-section li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 16px;
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
}

.policy-section li strong {
    color: var(--text-primary);
    font-weight: 600;
}

.policy-section a {
    color: var(--accent);
    text-decoration: none;
    transition: opacity 0.2s;
}

.policy-section a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* Mobile */
@media (max-width: 768px) {
    .policy-page {
        padding: 80px 16px 40px;
    }

    .policy-header h1 {
        font-size: 1.75rem;
    }

    .policy-subtitle {
        font-size: 1rem;
    }

    .policy-content {
        padding: 24px;
    }

    .policy-section h2 {
        font-size: 1.1rem;
    }
}
