:root {
            /* Primary color palette - based on your homepage */
            --primary: #3a6186;
            --primary-dark: #89253e;
            --secondary: #5f6368;
            --success: #28a745;
            --info: #4285f4;
            --warning: #fbbc05;
            --danger: #ea4335;
            --light: #f8f9fa;
            --dark: #202124;
            
            /* Modern gradients */
            --gradient-primary: linear-gradient(135deg, #3a6186 0%, #89253e 100%);
            --gradient-secondary: linear-gradient(90deg, #4e54c8, #8f94fb);
            
            /* Shadows */
            --box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
            --card-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
            --hover-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px;
            
            /* Border radius */
            --border-radius: 12px;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: #f5f7fa;
            color: #333;
            line-height: 1.6;
        }

        .navbar {
            background: white;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
            padding: 15px 0;
        }

        .navbar-brand {
            font-weight: 700;
            color: var(--primary) !important;
            display: flex;
            align-items: center;
        }

        .navbar-brand i {
            margin-right: 10px;
            color: var(--primary);
        }
        
        /* Privacy header section */
        .privacy-header {
            background: var(--gradient-primary);
            position: relative;
            padding: 70px 0;
            color: white;
            overflow: hidden;
        }

        .privacy-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 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.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            opacity: 0.5;
        }

        .privacy-header .shape {
            position: absolute;
            z-index: 0;
        }

        .privacy-header .shape-1 {
            top: -50px;
            right: 10%;
            width: 300px;
            height: 300px;
            border-radius: 57% 43% 70% 30% / 30% 64% 36% 70%;
            background: rgba(255, 255, 255, 0.05);
        }

        .privacy-header .shape-2 {
            bottom: -50px;
            left: 10%;
            width: 200px;
            height: 200px;
            border-radius: 38% 62% 63% 37% / 41% 44% 56% 59%;
            background: rgba(255, 255, 255, 0.05);
        }

        .header-content {
            position: relative;
            z-index: 1;
        }

        /* Privacy container */
        .privacy-container {
            margin-top: -30px;
            position: relative;
            z-index: 10;
            padding-bottom: 50px;
        }

        .privacy-card {
            background: white;
            border-radius: var(--border-radius);
            box-shadow: var(--card-shadow);
            padding: 40px;
            margin-bottom: 30px;
        }

        /* Typography */
        .privacy-card h1 {
            font-weight: 700;
            margin-bottom: 30px;
            color: var(--primary);
        }

        .privacy-card h2 {
            font-weight: 600;
            margin-top: 40px;
            margin-bottom: 20px;
            color: var(--primary);
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
            padding-bottom: 10px;
        }

        .privacy-card h3 {
            font-weight: 600;
            font-size: 1.2rem;
            margin-top: 25px;
            margin-bottom: 15px;
            color: var(--primary-dark);
        }

        .privacy-card p {
            margin-bottom: 15px;
        }

        .privacy-card ul, .privacy-card ol {
            margin-bottom: 20px;
            padding-left: 20px;
        }

        .privacy-card li {
            margin-bottom: 10px;
        }

        .privacy-footer {
            text-align: center;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid rgba(0, 0, 0, 0.1);
            color: var(--secondary);
        }

        .toc {
            background-color: #f8f9fa;
            padding: 20px;
            border-radius: var(--border-radius);
            margin-bottom: 30px;
            border-left: 4px solid var(--primary);
        }

        .toc h3 {
            margin-top: 0;
            color: var(--primary);
        }

        .toc ul {
            list-style-type: none;
            padding-left: 0;
        }

        .toc ul li {
            margin-bottom: 8px;
        }

        .toc ul li a {
            color: var(--primary);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .toc ul li a:hover {
            color: var(--primary-dark);
            text-decoration: underline;
        }

        .information-box {
            background-color: rgba(66, 133, 244, 0.1);
            border-left: 4px solid var(--info);
            padding: 15px;
            margin: 20px 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }

        .information-box h3 {
            margin-top: 0;
            color: var(--info);
        }

        .warning-box {
            background-color: rgba(251, 188, 5, 0.1);
            border-left: 4px solid var(--warning);
            padding: 15px;
            margin: 20px 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }

        .warning-box h3 {
            margin-top: 0;
            color: var(--warning);
        }

        .contact-info {
            background-color: #f8f9fa;
            padding: 20px;
            border-radius: var(--border-radius);
            margin-top: 30px;
        }

        .contact-info h3 {
            margin-top: 0;
            color: var(--primary);
        }

        .back-to-top {
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 40px;
            height: 40px;
            background: var(--gradient-primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 0;
            transition: opacity 0.3s;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
            z-index: 100;
        }

        .back-to-top.visible {
            opacity: 1;
        }
        
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
            font-size: 0.9em;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
        }
        
        .data-table thead tr {
            background-color: var(--primary);
            color: white;
            text-align: left;
            font-weight: bold;
        }
        
        .data-table th,
        .data-table td {
            padding: 12px 15px;
        }
        
        .data-table tbody tr {
            border-bottom: 1px solid #dddddd;
        }
        
        .data-table tbody tr:nth-of-type(even) {
            background-color: #f3f3f3;
        }
        
        .data-table tbody tr:last-of-type {
            border-bottom: 2px solid var(--primary);
        }

        @media (max-width: 768px) {
            .privacy-header {
                padding: 50px 0;
            }
            
            .privacy-card {
                padding: 20px;
            }
            
            .privacy-container {
                margin-top: -20px;
            }
            
            .data-table {
                display: block;
                overflow-x: auto;
            }
        }