* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
    --primary: #2563eb; --primary-dark: #1d4ed8; --secondary: #10b981;
    --accent: #f59e0b; --danger: #ef4444; --dark: #1e293b; --gray: #64748b;
    --light: #f8fafc; --white: #ffffff;
    --gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif; line-height: 1.8; color: var(--dark); background: var(--light); }
nav { position: fixed; top: 0; width: 100%; background: rgba(255,255,255,0.98); backdrop-filter: blur(20px); box-shadow: 0 2px 20px rgba(0,0,0,0.1); z-index: 1000; }
.nav-container { max-width: 1200px; margin: 0 auto; padding: 1rem 2rem; display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.5rem; font-weight: bold; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; text-decoration: none; }
.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a { color: var(--dark); text-decoration: none; transition: all 0.3s ease; }
.nav-links a:hover { color: var(--primary); }
.legal-header { margin-top: 80px; background: var(--gradient); padding: 3rem 2rem; text-align: center; position: relative; overflow: hidden; }
.legal-header::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.05"><path d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/></g></g></svg>'); animation: float 20s linear infinite; }
@keyframes float { 0% { transform: translateX(0) translateY(0) rotate(0deg); } 100% { transform: translateX(-100px) translateY(-100px) rotate(360deg); } }
.legal-header h1 { color: white; font-size: 2.5rem; margin-bottom: 1rem; position: relative; }
.legal-header p { color: rgba(255,255,255,0.9); font-size: 1.1rem; position: relative; }
.legal-container { max-width: 900px; margin: 0 auto; padding: 3rem 2rem; background: white; margin-top: -2rem; border-radius: 20px 20px 0 0; box-shadow: 0 -10px 40px rgba(0,0,0,0.05); }
.legal-meta { display: flex; justify-content: space-between; align-items: center; padding-bottom: 2rem; border-bottom: 2px solid var(--light); margin-bottom: 2rem; flex-wrap: wrap; gap: 1rem; }
.gdpr-badge { display: inline-block; background: var(--secondary); color: white; padding: 0.5rem 1rem; border-radius: 20px; font-weight: 600; font-size: 0.9rem; }
.update-date { color: var(--gray); font-size: 0.95rem; }
.toc { background: var(--light); border-radius: 15px; padding: 1.5rem; margin-bottom: 3rem; }
.toc-title { font-size: 1.2rem; font-weight: bold; margin-bottom: 1rem; color: var(--primary); }
.toc-list { list-style: none; }
.toc-list li { padding: 0.5rem 0; border-bottom: 1px solid rgba(0,0,0,0.05); }
.toc-list li:last-child { border-bottom: none; }
.toc-list a { color: var(--dark); text-decoration: none; transition: all 0.3s ease; display: flex; align-items: center; }
.toc-list a:hover { color: var(--primary); padding-left: 10px; }
.toc-list a::before { content: '🔒'; margin-right: 10px; font-size: 0.9rem; }
.legal-section { margin-bottom: 3rem; }
.legal-section h2 { font-size: 1.8rem; margin-bottom: 1.5rem; padding-bottom: 0.5rem; border-bottom: 2px solid var(--gradient); background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.legal-section h3 { font-size: 1.3rem; margin: 1.5rem 0 1rem; color: var(--dark); }
.legal-section p { margin-bottom: 1rem; color: #475569; text-align: justify; }
.legal-section ul, .legal-section ol { margin: 1rem 0 1.5rem 2rem; color: #475569; }
.legal-section li { margin-bottom: 0.5rem; }
.data-table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; border-radius: 10px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.data-table th { background: var(--gradient); color: white; padding: 1rem; text-align: left; font-weight: 600; }
.data-table td { padding: 1rem; border-bottom: 1px solid var(--light); }
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover { background: var(--light); }
.security-box { background: #f0f9ff; border-left: 4px solid var(--primary); padding: 1rem 1.5rem; border-radius: 10px; margin: 1.5rem 0; }
.security-box h4 { color: var(--primary); margin-bottom: 0.5rem; display: flex; align-items: center; gap: 0.5rem; }
.security-box h4::before { content: '🔐'; }
.rights-box { background: #f0fdf4; border-left: 4px solid var(--secondary); padding: 1rem 1.5rem; border-radius: 10px; margin: 1.5rem 0; }
.rights-box h4 { color: var(--secondary); margin-bottom: 0.5rem; display: flex; align-items: center; gap: 0.5rem; }
.rights-box h4::before { content: '✅'; }
.warning-box { background: #fef2f2; border-left: 4px solid var(--danger); padding: 1rem 1.5rem; border-radius: 10px; margin: 1.5rem 0; }
.warning-box h4 { color: var(--danger); margin-bottom: 0.5rem; display: flex; align-items: center; gap: 0.5rem; }
.warning-box h4::before { content: '⚠️'; }
.rights-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1rem; margin: 1.5rem 0; }
.right-card { background: var(--light); padding: 1.5rem; border-radius: 15px; transition: all 0.3s ease; }
.right-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.right-card h4 { color: var(--primary); margin-bottom: 0.5rem; display: flex; align-items: center; gap: 0.5rem; }
.right-card p { font-size: 0.95rem; color: var(--gray); }
.legal-nav { display: flex; justify-content: space-between; align-items: center; padding: 2rem 0; margin-top: 3rem; border-top: 2px solid var(--light); }
.legal-nav a { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.75rem 1.5rem; background: var(--light); color: var(--dark); text-decoration: none; border-radius: 25px; transition: all 0.3s ease; }
.legal-nav a:hover { background: var(--gradient); color: white; transform: translateY(-2px); }
footer { background: var(--dark); color: white; padding: 3rem 2rem 2rem; margin-top: 4rem; }
.footer-content { max-width: 1200px; margin: 0 auto; text-align: center; }
.footer-content p { color: rgba(255,255,255,0.7); }
@media (max-width: 768px) {
    .nav-links { display: none; }
    .legal-header h1 { font-size: 1.8rem; }
    .legal-container { padding: 2rem 1rem; }
    .legal-nav { flex-direction: column; gap: 1rem; }
    .data-table { font-size: 0.9rem; }
    .data-table th, .data-table td { padding: 0.75rem 0.5rem; }
    .rights-grid { grid-template-columns: 1fr; }
}
