    
   
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
            background-color: #fafafa;
            color: #1a1a1a;
            line-height: 1.8;
        }
        
        /* Hero Section */
        .policy-hero {
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
            position: relative;
            overflow: hidden;
        }
        
        .policy-hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(196,30,58,0.15) 0%, transparent 70%);
            pointer-events: none;
        }
        
        /* Decorative line */
        .decorative-line {
            width: 80px;
            height: 2px;
            background: #C41E3A;
        }
        
        /* Policy Cards */
        .policy-card {
            background: #ffffff;
            border: 1px solid rgba(0,0,0,0.06);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .policy-card:hover {
            box-shadow: 0 20px 40px rgba(0,0,0,0.08);
            transform: translateY(-4px);
        }
        
        /* Icon styling */
        .policy-icon {
            width: 56px;
            height: 56px;
            background: linear-gradient(135deg, rgba(196,30,58,0.1) 0%, rgba(196,30,58,0.05) 100%);
            border: 1px solid rgba(196,30,58,0.2);
        }
        
        /* List styling */
        .policy-list li {
            position: relative;
            padding-left: 1.5rem;
        }
        
        .policy-list li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0.75rem;
            width: 6px;
            height: 6px;
            background: #C41E3A;
            border-radius: 50%;
        }
        
        /* Highlight box */
        .highlight-box {
            background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
            border-left: 3px solid #C41E3A;
        }
        
        /* Navigation dots */
        .nav-dot {
            width: 8px;
            height: 8px;
            background: rgba(255,255,255,0.3);
            transition: all 0.3s ease;
        }
        
        .nav-dot.active {
            background: #C41E3A;
            width: 24px;
        }
        
        /* Smooth scroll padding for anchor links */
        section[id] {
            scroll-margin-top: 100px;
        }
        
        /* Print styles */
        @media print {
            .no-print {
                display: none;
            }
            body {
                background: white;
            }
        }
    

