/* Policy Page Specifics */
.policy-page {
    background: radial-gradient(circle at top right, #1e1b4b, #0f172a);
    color: #e2e8f0;
    line-height: 1.7;
}

.simple-nav {
    padding: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.simple-nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.simple-nav a:hover {
    color: white;
}

.policy-container {
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.policy-card {
    max-width: 850px;
    width: 100%;
    padding: 50px;
    border-radius: 30px;
}

/* Header */
.policy-header {
    text-align: center;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 30px;
}

.policy-icon {
    font-size: 3rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
}

.policy-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.policy-header p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Content Sections */
.policy-content section {
    margin-bottom: 35px;
}

.policy-content h2 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.policy-content p {
    color: #cbd5e1;
}

.policy-highlight {
    background: rgba(99, 102, 241, 0.1);
    border-left: 4px solid #6366f1;
    padding: 20px;
    border-radius: 12px;
    margin-top: 10px;
}

.policy-footer {
    text-align: center;
    margin-top: 50px;
}

/* Responsive */
@media (max-width: 600px) {
    .policy-card {
        padding: 25px;
    }
    .policy-header h1 {
        font-size: 1.8rem;
    }
}