  /* Legal page specific styles (same as privacy policy) */
        .legal-hero {
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
            color: white;
            padding: 80px 0;
            text-align: center;
        }
        
        .legal-hero h1 {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 20px;
        }
        
        .legal-hero p {
            font-size: 1.1rem;
            color: #e0e0e0;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .legal-content {
            padding: 80px 0;
            background: white;
        }
        
        .legal-container {
            max-width: 900px;
            margin: 0 auto;
            background: white;
            border-radius: 24px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            border: 1px solid #e2e8f0;
            padding: 60px;
        }
        
        .legal-container h2 {
            font-size: 2rem;
            color: #0f172a;
            margin: 40px 0 20px;
            font-weight: 700;
        }
        
        .legal-container h2:first-of-type {
            margin-top: 0;
        }
        
        .legal-container h3 {
            font-size: 1.3rem;
            color: #0f172a;
            margin: 30px 0 15px;
            font-weight: 600;
        }
        
        .legal-container p {
            color: #475569;
            line-height: 1.8;
            margin-bottom: 20px;
            font-size: 1rem;
        }
        
        .legal-container ul, 
        .legal-container ol {
            margin: 20px 0;
            padding-left: 30px;
            color: #475569;
            line-height: 1.8;
        }
        
        .legal-container li {
            margin-bottom: 10px;
        }
        
        .legal-container .highlight {
            background: #f8fafc;
            padding: 20px;
            border-radius: 12px;
            border-left: 4px solid #f97316;
            margin: 30px 0;
        }
        
        .cookie-table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
            font-size: 0.95rem;
        }
        
        .cookie-table th {
            background: #f1f5f9;
            padding: 12px;
            text-align: left;
            border: 1px solid #e2e8f0;
            font-weight: 600;
        }
        
        .cookie-table td {
            padding: 12px;
            border: 1px solid #e2e8f0;
            vertical-align: top;
        }
        
        .cookie-table tr:hover {
            background: #f8fafc;
        }
        
        .consent-badge {
            display: inline-block;
            background: #e2e8f0;
            padding: 3px 10px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        
        .consent-badge.necessary {
            background: #1e293b;
            color: white;
        }
        
        .consent-badge.preferences {
            background: #f97316;
            color: white;
        }
        
        .consent-badge.analytics {
            background: #3b82f6;
            color: white;
        }
        
        .consent-badge.marketing {
            background: #8b5cf6;
            color: white;
        }
        
        .cookie-controls {
            background: #f8fafc;
            padding: 30px;
            border-radius: 16px;
            margin: 30px 0;
            border: 1px solid #e2e8f0;
        }
        
        .cookie-toggle {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 15px 0;
            border-bottom: 1px solid #e2e8f0;
        }
        
        .cookie-toggle:last-child {
            border-bottom: none;
        }
        
        .cookie-toggle-label {
            font-weight: 600;
            color: #0f172a;
        }
        
        .cookie-toggle-desc {
            color: #64748b;
            font-size: 0.9rem;
        }
        
        /* Toggle switch */
        .switch {
            position: relative;
            display: inline-block;
            width: 50px;
            height: 24px;
            margin-left: 20px;
        }
        
        .switch input {
            opacity: 0;
            width: 0;
            height: 0;
        }
        
        .slider {
            position: absolute;
            cursor: pointer;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: #ccc;
            transition: .3s;
            border-radius: 24px;
        }
        
        .slider:before {
            position: absolute;
            content: "";
            height: 18px;
            width: 18px;
            left: 3px;
            bottom: 3px;
            background-color: white;
            transition: .3s;
            border-radius: 50%;
        }
        
        input:checked + .slider {
            background-color: #f97316;
        }
        
        input:checked + .slider:before {
            transform: translateX(26px);
        }
        
        .legal-meta {
            margin-top: 40px;
            padding-top: 30px;
            border-top: 1px solid #e2e8f0;
            color: #64748b;
            font-size: 0.9rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .legal-meta .date {
            background: #f1f5f9;
            padding: 5px 15px;
            border-radius: 20px;
            color: #475569;
        }
        
        @media (max-width: 768px) {
            .legal-hero h1 {
                font-size: 2.2rem;
            }
            
            .legal-container {
                padding: 30px 20px;
            }
            
            .legal-container h2 {
                font-size: 1.6rem;
            }
            
            .cookie-table {
                font-size: 0.85rem;
            }
            
            .cookie-table th, 
            .cookie-table td {
                padding: 8px;
            }
            
            .cookie-toggle {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }
            
            .switch {
                margin-left: 0;
                margin-top: 10px;
            }
            
            .legal-meta {
                flex-direction: column;
                gap: 15px;
                text-align: center;
            }
        }