:root {
    --primary: #1e293b;
    --text-main: #334155;
    --text-muted: #64748b;
    --bg: #f8fafc;
    --card-bg: #ffffff;
    --border: #e2e8f0;
    --accent: #2563eb; /* Schimbă în #10b981 dacă preferi verdele smarald pentru GDPR */
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background-color: var(--bg);
    color: var(--text-main);
    line-height: 1.6;
    margin: 0;
    padding: 40px 20px;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--card-bg);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--border);
}

h1 {
    color: var(--primary);
    font-size: 2rem;
    margin-top: 0;
    margin-bottom: 10px;
    border-bottom: 2px solid var(--accent);
    padding-bottom: 15px;
    display: inline-block;
}

h2 {
    color: var(--primary);
    font-size: 1.3rem;
    margin-top: 35px;
    margin-bottom: 15px;
}

p, ul {
    margin-bottom: 15px;
    font-size: 1rem;
}

li {
    margin-bottom: 8px;
}

.last-updated {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-style: italic;
    margin-bottom: 30px;
}

.back-btn {
    display: inline-block;
    margin-bottom: 20px;
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
}

.back-btn:hover {
    text-decoration: underline;
}

.ultimul-p { 
    margin-top: 40px; 
    text-align: center; 
    color: var(--text-muted); 
    font-size: 0.9rem; 
}