        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background: linear-gradient(135deg, #2c3e50 0%, #3498db 50%, #9b59b6 100%);
            min-height: 100vh;
        }
        
        .container {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        header {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }
        
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
            max-width: 1200px;
            margin: 0 auto;
            padding-left: 20px;
            padding-right: 20px;
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: #9b59b6;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .logo::before {
            content: "🔒";
            font-size: 2rem;
        }
        
        .back-link {
            color: #9b59b6;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        
        .back-link:hover {
            color: #3498db;
        }
        
        main {
            margin-top: 120px;
            margin-bottom: 4rem;
        }
        
        .content {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
        }
        
        h1 {
            font-size: 2.5rem;
            color: #2c3e50;
            margin-bottom: 2rem;
            text-align: center;
            position: relative;
        }
        
        h1::after {
            content: '';
            position: absolute;
            width: 60px;
            height: 4px;
            background: linear-gradient(45deg, #e74c3c, #c0392b);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }
        
        h2 {
            font-size: 1.5rem;
            color: #34495e;
            margin: 2rem 0 1rem 0;
            border-left: 4px solid #e74c3c;
            padding-left: 1rem;
        }
        
        h3 {
            font-size: 1.2rem;
            color: #2c3e50;
            margin: 1.5rem 0 0.5rem 0;
        }
        
        p {
            margin-bottom: 1rem;
            color: #666;
            text-align: justify;
        }
        
        ul, ol {
            margin: 1rem 0 1rem 2rem;
            color: #666;
        }
        
        li {
            margin-bottom: 0.5rem;
        }
        
        .privacy-highlight {
            background: linear-gradient(45deg, #e74c3c, #c0392b);
            color: white;
            padding: 1.5rem;
            border-radius: 15px;
            margin: 2rem 0;
            box-shadow: 0 10px 30px rgba(231, 76, 60, 0.3);
        }
        
        .privacy-highlight h3 {
            color: white;
            margin-bottom: 1rem;
        }
        
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 2rem 0;
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .data-table th,
        .data-table td {
            padding: 1rem;
            text-align: left;
            border-bottom: 1px solid #ecf0f1;
        }
        
        .data-table th {
            background: linear-gradient(45deg, #34495e, #2c3e50);
            color: white;
            font-weight: bold;
        }
        
        .data-table tr:hover {
            background: #f8f9fa;
        }
        
        .data-purpose {
            display: inline-block;
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            color: white;
            font-size: 0.8rem;
            font-weight: bold;
        }
        
        .contractual {
            background: #27ae60;
        }
        
        .legitimate {
            background: #3498db;
        }
        
        .consent {
            background: #f39c12;
        }
        
        .legal {
            background: #8e44ad;
        }
        
        .rights-section {
            background: linear-gradient(45deg, #3498db, #2980b9);
            color: white;
            padding: 2rem;
            border-radius: 15px;
            margin: 2rem 0;
        }
        
        .rights-section h3 {
            color: white;
            margin-bottom: 1rem;
        }
        
        .rights-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
            margin-top: 1rem;
        }
        
        .right-card {
            background: rgba(255, 255, 255, 0.1);
            padding: 1rem;
            border-radius: 10px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .right-card h4 {
            color: white;
            margin-bottom: 0.5rem;
            font-size: 1.1rem;
        }
        
        .right-card p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 0.9rem;
            margin-bottom: 0;
        }
        
        .security-section {
            background: linear-gradient(45deg, #27ae60, #229954);
            color: white;
            padding: 2rem;
            border-radius: 15px;
            margin: 2rem 0;
        }
        
        .security-section h3 {
            color: white;
            margin-bottom: 1rem;
        }
        
        .contact-info {
            background: linear-gradient(45deg, #8e44ad, #9b59b6);
            color: white;
            padding: 2rem;
            border-radius: 15px;
            margin-top: 2rem;
        }
        
        .contact-info h3 {
            color: white;
            margin-bottom: 1rem;
        }
        
        .contact-info p {
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 0.5rem;
        }
        
        .gdpr-badge {
            display: inline-flex;
            align-items: center;
            background: #2980b9;
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 25px;
            font-weight: bold;
            margin: 1rem 0;
        }
        
        .gdpr-badge::before {
            content: "🇪🇺";
            margin-right: 0.5rem;
        }
        
        .last-updated {
            text-align: center;
            font-style: italic;
            color: #7f8c8d;
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 2px solid #ecf0f1;
        }
        
        @media (max-width: 768px) {
            .content {
                padding: 2rem 1.5rem;
                margin: 0 10px;
            }
            
            h1 {
                font-size: 2rem;
            }
            
            nav {
                flex-direction: column;
                gap: 1rem;
                padding: 1rem 20px;
            }
            
            main {
                margin-top: 140px;
            }
            
            .data-table {
                font-size: 0.9rem;
            }
            
            .rights-grid {
                grid-template-columns: 1fr;
            }
        }