.policy-page {
    padding-top: var(--space-12);
    padding-bottom: var(--space-24);
    background-color: var(--color-bg);
    min-height: 80vh;
}

.policy-header {
    text-align: center;
    margin-bottom: var(--space-12);
    border-bottom: 1px solid var(--color-border);
    padding-bottom: var(--space-8);
}

.policy-header h1 {
    font-size: var(--size-3xl);
    color: var(--color-text);
    margin-bottom: var(--space-4);
}

@media (min-width: 768px) {
    .policy-header h1 {
        font-size: var(--size-4xl);
    }
}

.lead-text {
    font-size: var(--size-lg);
    color: var(--color-text-muted);
    max-width: 60ch;
    margin: 0 auto;
}

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

.policy-section {
    margin-bottom: var(--space-8);
    padding: var(--space-6);
    background-color: var(--color-surface);
    border-left: 2px solid var(--color-primary);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.policy-section:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-sm);
    border-left-color: var(--color-accent);
}

.policy-section h2 {
    font-size: var(--size-xl);
    color: var(--color-text);
    margin-bottom: var(--space-3);
    display: flex;
    align-items: center;
}

.policy-section p {
    font-size: var(--size-base);
    line-height: var(--leading-relaxed);
    color: var(--color-text-muted);
    margin-bottom: 0;
}

/* Fade In Animation State */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out, border-color 0.3s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}