        :root {
            --primary-color: #3a36e0;
            --secondary-color: #6c63ff;
            --accent-color: #5e2ca5;
            --text-color: #333;
            --light-text: #666;
            --white: #ffffff;
            --light-bg: #f9fafc;
            --shadow: rgba(0, 0, 0, 0.1);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--light-bg);
            color: var(--text-color);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        .header {
            position: sticky;
            top: 0;
            left: 0;
            width: 100%;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: var(--white);
            padding: 1.5rem 2rem;
            box-shadow: 0 4px 12px var(--shadow);
            z-index: 100;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .header h1 {
            font-weight: 600;
            font-size: 1.8rem;
            letter-spacing: 0.5px;
        }
        
        .container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 2rem;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeUp 0.8s ease-out forwards;
        }
        
        .hero {
            background: linear-gradient(135deg, rgba(108, 99, 255, 0.1), rgba(94, 44, 165, 0.1));
            padding: 3rem 2rem;
            border-radius: 12px;
            margin-bottom: 3rem;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }
        
        .hero h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .hero p {
            font-size: 1.1rem;
            color: var(--light-text);
            max-width: 700px;
            margin: 0 auto;
        }
        
        .policy-section {
            background-color: var(--white);
            border-radius: 12px;
            padding: 2.5rem;
            margin-bottom: 2rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            opacity: 0;
            transform: translateY(20px);
        }
        
        .policy-section h3 {
            color: var(--primary-color);
            font-size: 1.5rem;
            margin-bottom: 1rem;
            position: relative;
            padding-bottom: 0.5rem;
        }
        
        .policy-section h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
            border-radius: 3px;
        }
        
        .policy-section p {
            color: var(--light-text);
            font-size: 1rem;
            line-height: 1.8;
        }
        
        .back-to-home {
            text-align: center;
            margin: 3rem 0;
        }
        
        .btn {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: var(--white);
            font-family: 'Poppins', sans-serif;
            font-size: 1rem;
            font-weight: 500;
            border: none;
            border-radius: 50px;
            padding: 0.8rem 2rem;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
            text-decoration: none;
            display: inline-block;
        }
        
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 15px rgba(58, 54, 224, 0.3);
        }
        
        .footer {
            text-align: center;
            padding: 2rem;
            color: var(--light-text);
            font-size: 0.9rem;
            background-color: var(--white);
            margin-top: 3rem;
        }
        
        .effective-date {
            background: linear-gradient(135deg, rgba(108, 99, 255, 0.1), rgba(94, 44, 165, 0.1));
            padding: 1.5rem;
            border-radius: 12px;
            text-align: center;
            margin-top: 3rem;
            font-weight: 500;
            color: var(--accent-color);
        }
        
        @keyframes fadeUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @media (max-width: 768px) {
            .header {
                padding: 1rem 1.5rem;
            }
            
            .header h1 {
                font-size: 1.5rem;
            }
            
            .container {
                padding: 1.5rem;
            }
            
            .hero {
                padding: 2rem 1.5rem;
            }
            
            .hero h2 {
                font-size: 2rem;
            }
            
            .policy-section {
                padding: 1.5rem;
            }
            
                                * {
    outline: none !important;
    -webkit-tap-highlight-color: transparent;
    }

    *:focus-visible {
    outline: 2px solid #your-color;
    }
        }