 
        :root {
            --navy: #0d2f5ed6;
            --navy-dark: #051b38f2;
            --navy-light: #1a4b8c;
            --teal: #20c997;
            --teal-dark: #149672;
            --cyan: #464fb7;
            --white: #ffffff;
            --light: #f8f9fa;
            --gray: #6c757d;
            --dark-text: #212529;
            --light-text: #ffffff;
            --transition: all 0.3s ease-in-out;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: var(--dark-text);
            overflow-x: hidden;
            line-height: 1.6;
            background: var(--light);
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            margin-bottom: 1rem;
        }
        
        a {
            text-decoration: none;
            transition: var(--transition);
        }
        
        /* Common Section Styles */
        .section-padding {
            padding: 30px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 40px;
            position: relative;
        }
        
        .section-title h2 {
            color: var(--navy);
            font-size: 2.2rem;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--teal) 0%, var(--cyan) 100%);
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }
        
        /* Privacy Header */
        .privacy-header {
            background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
            color: var(--light-text);
            padding: 80px 0 60px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .privacy-header:before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 200%;
            background: rgba(255, 255, 255, 0.05);
            transform: rotate(30deg);
        }
        
        .privacy-header h1 {
            color: var(--light-text);
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }
        
        .privacy-header h1:after {
            content: '';
            position: absolute;
            width: 80px;
            height: 3px;
            background: var(--teal);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .effective-date {
            background: rgba(255, 255, 255, 0.1);
            padding: 15px;
            border-radius: 10px;
            display: inline-block;
            margin-top: 20px;
            backdrop-filter: blur(10px);
            position: relative;
        }
        
        /* Privacy Content Styles */
        .privacy-content {
            background: white;
            padding: 50px;
            border-radius: 10px;
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
            margin-bottom: 40px;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .privacy-section {
            margin-bottom: 40px;
            padding-bottom: 30px;
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        }
        
        .privacy-section:last-of-type {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }
        
        .privacy-section h2 {
            color: var(--navy);
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
            display: flex;
            align-items: center;
        }
        
        .privacy-section h2:after {
            content: '';
            position: absolute;
            width: 60px;
            height: 3px;
            background: var(--teal);
            bottom: 0;
            left: 0;
        }
        
        .privacy-section h2 .section-icon {
            background: rgba(32, 201, 151, 0.1);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            color: var(--teal);
            font-size: 1.2rem;
        }
        
        .privacy-section h3 {
            color: var(--navy);
            margin-top: 25px;
            margin-bottom: 15px;
            font-size: 1.3rem;
        }
        
        .privacy-section p {
            margin-bottom: 15px;
        }
        
        /* Clean Bullet Point Styles */
        .clean-list {
            list-style: none;
            padding-left: 0;
            margin-bottom: 20px;
        }
        
        .clean-list li {
            margin-bottom: 10px;
            padding-left: 30px;
            position: relative;
        }
        
        .clean-list li:before {
            content: '';
            position: absolute;
            left: 0;
            top: 10px;
            width: 8px;
            height: 8px;
            background: var(--teal);
            border-radius: 50%;
        }
        
        .clean-list.compact li {
            margin-bottom: 6px;
            font-size: 0.95rem;
        }
        
        .clean-list.compact li:before {
            top: 8px;
            width: 6px;
            height: 6px;
        }
        
        /* Improved Layout for Desktop */
        .two-column-list {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        
        .three-column-list {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 15px;
        }
        
        .privacy-section .highlight {
            background: rgba(32, 201, 151, 0.1);
            padding: 20px;
            border-left: 4px solid var(--teal);
            margin: 20px 0;
            border-radius: 0 5px 5px 0;
        }
        
        .privacy-section .highlight p {
            margin-bottom: 0;
        }
        
        .contact-info {
            background: rgba(13, 47, 94, 0.05);
            padding: 25px;
            border-radius: 10px;
            margin-top: 20px;
        }
        
        .contact-info ul {
            list-style: none;
            padding-left: 0;
        }
        
        .contact-info li {
            margin-bottom: 15px;
            padding-left: 0;
            display: flex;
            align-items: flex-start;
        }
        
        .contact-info li i {
            color: var(--teal);
            margin-right: 15px;
            font-size: 1.2rem;
            width: 20px;
            text-align: center;
            margin-top: 3px;
        }
        
        /* Back to top */
        #back-to-top {
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 45px;
            height: 45px;
            background: linear-gradient(135deg, var(--teal) 0%, var(--cyan) 100%);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition);
            opacity: 0;
            visibility: hidden;
            z-index: 999;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        #back-to-top.active {
            opacity: 1;
            visibility: visible;
        }
        
        #back-to-top:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        }
        
        /* Desktop Optimizations */
        @media (min-width: 1200px) {
            .privacy-content {
                padding: 60px;
            }
            
            .privacy-section h2 {
                font-size: 1.8rem;
            }
            
            .two-column-list {
                gap: 25px;
            }
            
            .three-column-list {
                gap: 20px;
            }
            
            /* Better spacing for desktop */
            .privacy-section {
                margin-bottom: 50px;
                padding-bottom: 40px;
            }
        }
        
        /* Tablet and Mobile Responsive Styles */
        @media (max-width: 1199.98px) {
            .section-title h2 {
                font-size: 2rem;
            }
            
            .privacy-content {
                max-width: 100%;
                padding: 40px;
            }
        }
        
        @media (max-width: 991.98px) {
            .section-padding {
                padding: 50px 0;
            }
            
            .privacy-content {
                padding: 30px;
            }
            
            .privacy-header {
                padding: 70px 0 50px;
            }
            
            .three-column-list {
                grid-template-columns: 1fr 1fr;
            }
        }
        
        @media (max-width: 767.98px) {
            .section-padding {
                padding: 40px 0;
            }
            
            .section-title {
                margin-bottom: 30px;
            }
            
            .section-title h2 {
                font-size: 1.8rem;
            }
            
            .privacy-content {
                padding: 20px;
            }
            
            .privacy-header {
                padding: 60px 0 40px;
            }
            
            .privacy-header h1 {
                font-size: 1.8rem;
            }
            
            .privacy-section h2 {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .privacy-section h2 .section-icon {
                margin-bottom: 10px;
                margin-right: 0;
            }
            
            .two-column-list,
            .three-column-list {
                grid-template-columns: 1fr;
                gap: 10px;
            }
            
            .clean-list li {
                padding-left: 25px;
            }
            
            .clean-list li:before {
                width: 6px;
                height: 6px;
                top: 9px;
            }
        }
        
        @media (max-width: 575.98px) {
            .section-padding {
                padding: 30px 0;
            }
            
            .section-title h2 {
                font-size: 1.6rem;
            }
            
            .privacy-header {
                padding: 50px 0 30px;
            }
            
            .privacy-header h1 {
                font-size: 1.6rem;
            }
            
            .privacy-header p {
                font-size: 0.95rem;
            }
            
            .effective-date {
                padding: 12px;
                font-size: 0.9rem;
            }
            
            .privacy-content {
                padding: 15px;
            }
            
            .privacy-section {
                margin-bottom: 30px;
                padding-bottom: 20px;
            }
            
            .privacy-section h2 {
                font-size: 1.4rem;
            }
            
            .privacy-section h3 {
                font-size: 1.2rem;
            }
            
            .clean-list li {
                font-size: 0.95rem;
                margin-bottom: 8px;
            }
            
            .contact-info {
                padding: 20px;
            }
            
            #back-to-top {
                bottom: 15px;
                right: 15px;
                width: 40px;
                height: 40px;
            }
        }
   