.policy-container {
    padding-top: var(--space-12);
    padding-bottom: var(--space-16);
    max-width: 900px;
}

.policy-header {
    margin: var(--space-12) 0;
    position: relative;
}

.policy-header h1 {
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-4);
    text-shadow: var(--shadow-glow);
}

.policy-intro {
    font-size: var(--size-text-lg);
    color: var(--color-text-muted);
}

.policy-content {
    background-color: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-8);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

/* Tech accent line on the left */
.policy-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--color-primary), transparent);
}

.policy-section {
    margin-bottom: var(--space-8);
    padding-bottom: var(--space-6);
    border-bottom: 1px solid var(--color-border);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity var(--transition-base), transform var(--transition-base);
}

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

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

.policy-section h2::before {
    content: '#';
    color: var(--color-primary);
    margin-right: var(--space-2);
    font-family: var(--font-mono);
    font-size: var(--size-text-lg);
    opacity: 0.7;
}

.policy-section p {
    color: var(--color-text-main);
    line-height: 1.7;
    max-width: none;
}

.policy-actions {
    margin-top: var(--space-12);
    display: flex;
    justify-content: center;
    gap: var(--space-4);
}

/* Reveal Animation Class */
.policy-section.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .policy-content {
        padding: var(--space-4);
    }
    
    .policy-header h1 {
        font-size: var(--size-text-2xl);
    }
}