:root {
            --epaidera-primary: #6366f1;
            --epaidera-secondary: #8b5cf6;
            --epaidera-accent: #06d6a0;
            --epaidera-dark: #1e293b;
            --epaidera-light: #f8fafc;
            --epaidera-gradient: linear-gradient(135deg, var(--epaidera-primary) 0%, var(--epaidera-secondary) 100%);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.7;
            color: #4b5563;
            background-color: #f9fafb;
        }
        
        /* Navigation */
        .navbar {
            padding: 1.2rem 0;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
            display: flex;
            align-items: center;
        }
        
        .brand-gradient {
            background: var(--epaidera-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        /* Header Section */
        .legal-header {
            background: var(--epaidera-gradient);
            color: white;
            padding: 100px 0 60px;
            position: relative;
            overflow: hidden;
        }
        
        .legal-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }
        
        .header-content {
            position: relative;
            z-index: 2;
        }
        
        .header-icon {
            width: 80px;
            height: 80px;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
            font-size: 2rem;
        }
        
        /* Content Section */
        .legal-content {
            padding: 80px 0;
        }
        
        .legal-container {
            max-width: 900px;
            margin: 0 auto;
        }
        
        .legal-section {
            background: white;
            border-radius: 16px;
            padding: 40px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            margin-bottom: 30px;
            border: 1px solid #f1f5f9;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .legal-section:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
        }
        
        .section-number {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            background: var(--epaidera-gradient);
            color: white;
            border-radius: 10px;
            font-weight: 600;
            margin-right: 12px;
        }
        
        .legal-section h2 {
            color: var(--epaidera-dark);
            margin-bottom: 24px;
            padding-bottom: 16px;
            border-bottom: 2px solid #f1f5f9;
            font-weight: 700;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
        }
        
        .legal-section h3 {
            color: var(--epaidera-primary);
            margin: 28px 0 16px;
            font-weight: 600;
            font-size: 1.2rem;
            position: relative;
            padding-left: 16px;
        }
        
        .legal-section h3::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 4px;
            height: 20px;
            background: var(--epaidera-primary);
            border-radius: 2px;
        }
        
        .legal-section p {
            margin-bottom: 16px;
            color: #64748b;
        }
        
        .legal-list {
            padding-left: 24px;
            margin-bottom: 20px;
        }
        
        .legal-list li {
            margin-bottom: 12px;
            position: relative;
            padding-left: 8px;
            color: #64748b;
        }
        
        .legal-list li::marker {
            color: var(--epaidera-primary);
        }
        
        .highlight-box {
            background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
            border-left: 4px solid var(--epaidera-primary);
            padding: 20px;
            border-radius: 8px;
            margin: 20px 0;
        }
        
        .data-category {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
            padding: 20px;
            background: #f8fafc;
            border-radius: 12px;
            border-left: 4px solid var(--epaidera-accent);
        }
        
        .data-icon {
            width: 50px;
            height: 50px;
            background: var(--epaidera-gradient);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            margin-right: 20px;
            flex-shrink: 0;
        }
        
        .data-content {
            flex: 1;
        }
        
        .data-content h4 {
            color: var(--epaidera-dark);
            margin-bottom: 8px;
            font-weight: 600;
        }
        
        /* Table Styling */
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        }
        
        .data-table th {
            background: var(--epaidera-gradient);
            color: white;
            padding: 16px;
            text-align: left;
            font-weight: 600;
        }
        
        .data-table td {
            padding: 14px 16px;
            border-bottom: 1px solid #f1f5f9;
        }
        
        .data-table tr:nth-child(even) {
            background-color: #f8fafc;
        }
        
        .data-table tr:hover {
            background-color: rgba(99, 102, 241, 0.05);
        }
        
        /* Rights Section */
        .rights-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin: 20px 0;
        }
        
        .right-card {
            background: white;
            padding: 25px;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
            border: 1px solid #f1f5f9;
            transition: transform 0.3s ease;
        }
        
        .right-card:hover {
            transform: translateY(-5px);
        }
        
        .right-icon {
            width: 50px;
            height: 50px;
            background: var(--epaidera-gradient);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            margin-bottom: 15px;
        }
        
        .right-card h4 {
            color: var(--epaidera-dark);
            margin-bottom: 10px;
            font-weight: 600;
        }
        
        /* Footer */
        footer {
            background: var(--epaidera-dark);
            color: white;
            padding: 60px 0 30px;
        }
        
        .footer-brand {
            font-weight: 700;
            font-size: 1.5rem;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
        }
        
        .footer-links a {
            color: #cbd5e1;
            text-decoration: none;
            transition: color 0.3s ease;
            margin-right: 20px;
        }
        
        .footer-links a:hover {
            color: white;
        }
        
        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            color: white;
            margin-right: 12px;
            transition: all 0.3s ease;
        }
        
        .social-links a:hover {
            background: var(--epaidera-primary);
            transform: translateY(-2px);
        }
        
        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--epaidera-gradient);
            color: white;
            border: none;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
            z-index: 1000;
        }
        
        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }
        
        .back-to-top:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(99, 102, 241, 0.6);
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .legal-header {
                padding: 80px 0 40px;
            }
            
            .legal-section {
                padding: 30px 20px;
            }
            
            .legal-section h2 {
                font-size: 1.3rem;
            }
            
            .data-table {
                font-size: 0.9rem;
            }
            
            .data-table th,
            .data-table td {
                padding: 12px 10px;
            }
            
            .rights-grid {
                grid-template-columns: 1fr;
            }
            
            .data-category {
                flex-direction: column;
            }
            
            .data-icon {
                margin-right: 0;
                margin-bottom: 15px;
            }
        }
        
        /* Animation */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .fade-in {
            animation: fadeInUp 0.6s ease forwards;
        }