/* assets/css/policy.css */

.policy-header {
    margin-bottom: 3rem;
    text-align: center;
}

.policy-container {
    padding-top: 140px;
    padding-bottom: 6rem;
    min-height: 80vh;
}

.glass-panel-content {
    background: linear-gradient(
        145deg, 
        hsla(var(--surface-color) / 0.6), 
        hsla(var(--surface-color) / 0.3)
    );
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid hsla(var(--text-main) / 0.1);
    border-radius: 24px;
    padding: 3rem;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 10px 40px -10px hsla(0, 0%, 0%, 0.1);
}

@media (max-width: 600px) {
    .glass-panel-content {
        padding: 1.5rem;
    }
}

.policy-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: hsl(var(--text-muted));
}

.policy-content h2 {
    font-size: 1.75rem;
    color: hsl(var(--text-main));
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid hsla(var(--text-main)/0.1);
}

.policy-content p {
    margin-bottom: 1.5rem;
}

.policy-content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

.policy-content ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
}

.policy-content ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: hsl(var(--primary));
    font-weight: bold;
    font-size: 1.2rem;
}

.policy-content strong {
    color: hsl(var(--text-main));
}

.policy-updated {
    text-align: center;
    color: hsl(var(--text-muted));
    font-size: 0.9rem;
    margin-top: 3rem;
    font-style: italic;
    opacity: 0.7;
}

/* Link Highlight */
.policy-content a {
    color: hsl(var(--primary));
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: 0.2s;
}

.policy-content a:hover {
    border-bottom-color: hsl(var(--primary));
}
