.policy-page {
    padding: 2rem 0;
    min-height: 80vh;
}

.policy-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-light);
}

.policy-header h1 {
    color: var(--primary-blue);
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.last-updated {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

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

.policy-content section {
    margin-bottom: 2.5rem;
}

.policy-content h2 {
    color: var(--primary-blue);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent-light);
}

.policy-content h3 {
    color: var(--text-dark);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    margin-top: 1.5rem;
}

.policy-content p {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.policy-content ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.policy-content li {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

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

@media (max-width: 768px) {
    .policy-page {
        padding: 1rem 0;
    }
    
    .policy-header h1 {
        font-size: 2rem;
    }
    
    .policy-content {
        padding: 0 1rem;
    }
    
    .policy-content h2 {
        font-size: 1.3rem;
    }
    
    .policy-content h3 {
        font-size: 1.1rem;
    }
}