* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            color: #333;
            line-height: 1.6;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header */
        header {
            background: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        
        nav {
            padding: 20px 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 24px;
            font-weight: 700;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-decoration: none;
        }
        
        nav ul {
            list-style: none;
            display: flex;
            gap: 30px;
        }
        
        nav a {
            color: #333;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }
        
        nav a:hover {
            color: #667eea;
        }
        
        .mobile-menu {
            display: none;
            font-size: 28px;
            cursor: pointer;
        }
        
        /* Legal Content Section */
        .legal-hero {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            padding: 100px 0 60px;
            color: white;
        }
        
        .legal-hero h1 {
            font-size: 42px;
            margin-bottom: 20px;
            text-align: center;
        }
        
        .legal-hero p {
            font-size: 18px;
            text-align: center;
            opacity: 0.9;
        }
        
        .legal-content {
            padding: 60px 0;
            background: white;
        }
        
        .legal-container {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .last-updated {
            background: #f8f9fa;
            padding: 15px 20px;
            border-radius: 8px;
            margin-bottom: 40px;
            color: #666;
            font-size: 14px;
        }
        
        .legal-section {
            margin-bottom: 40px;
        }
        
        .legal-section h2 {
            font-size: 28px;
            color: #333;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #667eea;
        }
        
        .legal-section h3 {
            font-size: 22px;
            color: #444;
            margin: 30px 0 15px;
        }
        
        .legal-section p {
            color: #555;
            line-height: 1.8;
            margin-bottom: 15px;
        }
        
        .legal-section ul {
            margin: 15px 0 15px 30px;
        }
        
        .legal-section ul li {
            color: #555;
            margin-bottom: 10px;
            line-height: 1.8;
        }
        
        .legal-section strong {
            color: #333;
            font-weight: 600;
        }
        
        .highlight-box {
            background: #f8f9fa;
            border-left: 4px solid #667eea;
            padding: 20px;
            margin: 30px 0;
            border-radius: 4px;
        }
        
        .highlight-box p {
            margin: 0;
            color: #444;
        }
        
        .cookie-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
            background: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
            border-radius: 8px;
            overflow: hidden;
        }
        
        .cookie-table th {
            background: #667eea;
            color: white;
            padding: 15px;
            text-align: left;
            font-weight: 600;
        }
        
        .cookie-table td {
            padding: 15px;
            border-bottom: 1px solid #eee;
            vertical-align: top;
        }
        
        .cookie-table tr:nth-child(even) {
            background: #f8f9fa;
        }
        
        .cookie-table tr:last-child td {
            border-bottom: none;
        }
        
        .cookie-category {
            display: inline-block;
            padding: 5px 10px;
            border-radius: 4px;
            font-size: 12px;
            font-weight: 600;
            margin-bottom: 5px;
        }
        
        .essential {
            background: #27ae60;
            color: white;
        }
        
        .functional {
            background: #3498db;
            color: white;
        }
        
        .analytics {
            background: #e67e22;
            color: white;
        }
        
        .marketing {
            background: #9b59b6;
            color: white;
        }
        
        .browser-settings {
            background: white;
            border: 2px solid #667eea;
            border-radius: 8px;
            padding: 25px;
            margin: 30px 0;
        }
        
        .browser-settings h3 {
            color: #667eea;
            margin-bottom: 20px;
        }
        
        .browser-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 15px;
            margin-top: 20px;
        }
        
        .browser-item {
            padding: 15px;
            background: #f8f9fa;
            border-radius: 6px;
        }
        
        .browser-item strong {
            display: block;
            margin-bottom: 5px;
            color: #333;
        }
        
        .browser-item a {
            color: #667eea;
            text-decoration: none;
            font-size: 14px;
        }
        
        .browser-item a:hover {
            text-decoration: underline;
        }
        
        /* Footer */
        footer {
            background: #2c3e50;
            color: white;
            padding: 60px 0 30px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-section h3 {
            font-size: 20px;
            margin-bottom: 20px;
            color: white;
        }
        
        .footer-section p,
        .footer-section ul {
            color: #95a5a6;
            line-height: 1.8;
        }
        
        .footer-section ul {
            list-style: none;
        }
        
        .footer-section ul li {
            margin-bottom: 10px;
        }
        
        .footer-section a {
            color: #95a5a6;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-section a:hover {
            color: white;
        }
        
        .footer-bottom {
            border-top: 1px solid #34495e;
            padding-top: 30px;
            text-align: center;
            color: #95a5a6;
        }
        
        .legal-links {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-top: 20px;
        }
        
        .legal-links a {
            color: #95a5a6;
            text-decoration: none;
        }
        
        .legal-links a:hover {
            color: white;
        }
        
        /* Contact Links Styles */
        .footer-section a[href^="tel:"],
        .footer-section a[href^="mailto:"],
        .footer-section a[href^="https://wa.me/"] {
            color: #95a5a6;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-section a[href^="tel:"]:hover,
        .footer-section a[href^="mailto:"]:hover,
        .footer-section a[href^="https://wa.me/"]:hover {
            color: white;
            text-decoration: underline;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            nav ul {
                display: none;
            }
            
            .mobile-menu {
                display: block;
            }
            
            .legal-hero h1 {
                font-size: 32px;
            }
            
            .legal-section h2 {
                font-size: 24px;
            }
            
            .cookie-table {
                font-size: 14px;
            }
            
            .cookie-table th,
            .cookie-table td {
                padding: 10px;
            }
            
            .browser-list {
                grid-template-columns: 1fr;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
            }
        }