        body {
            font-family: 'Cairo', sans-serif;
            background: linear-gradient(135deg, #f8fafc 0%, #e3f2fd 100%);
            margin: 0;
            padding: 0;
            direction: rtl;
            text-align: right;
        }
        
        .privacy-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 60px 20px;
            position: relative;
        }
        
        .privacy-hero {
            text-align: center;
            background: linear-gradient(135deg, #031b27, #0d3f52);
            border-radius: 20px;
            padding: 60px 40px;
            margin-bottom: 40px;
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .privacy-hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
            background-size: 50px 50px;
            animation: float 20s infinite linear;
        }
        
        @keyframes float {
            0% { transform: translate(-50px, -50px) rotate(0deg); }
            100% { transform: translate(-50px, -50px) rotate(360deg); }
        }
        
        .privacy-hero h1 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 20px;
            position: relative;
            z-index: 2;
        }
        
        .privacy-hero p {
            font-size: 1.2rem;
            opacity: 0.9;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.8;
            position: relative;
            z-index: 2;
        }
        
        .privacy-content {
            display: grid;
            gap: 30px;
        }
        
        .privacy-section {
            background: rgba(255, 255, 255, 0.9);
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .privacy-section::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #031b27, #0d3f52, #90cee2);
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.5s ease;
        }
        
        .privacy-section:hover::before {
            transform: scaleX(1);
        }
        
        .privacy-section:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }
        
        .section-header {
            display: flex;
            align-items: center;
            margin-bottom: 25px;
            gap: 15px;
        }
        
        .section-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #031b27, #0d3f52);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
        }
        
        .section-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: #031b27;
            margin: 0;
        }
        
        .section-content {
            color: #4a5568;
            line-height: 1.8;
            font-size: 1.1rem;
        }
        
        .section-content ul {
            padding-right: 20px;
            margin: 15px 0;
        }
        
        .section-content li {
            margin-bottom: 10px;
            position: relative;
        }
        
        .section-content li::before {
            content: '✓';
            position: absolute;
            right: -20px;
            color: #0d3f52;
            font-weight: bold;
        }
        
        .contact-section {
            background: linear-gradient(135deg, #90cee2, #0d3f52);
            color: white;
            text-align: center;
        }
        
        .contact-section .section-icon {
            background: rgba(255, 255, 255, 0.2);
            margin: 0 auto 20px;
        }
        
        .contact-links {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-top: 20px;
            flex-wrap: wrap;
        }
        
        .contact-link {
            display: flex;
            align-items: center;
            gap: 10px;
            color: white;
            text-decoration: none;
            padding: 12px 20px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 25px;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }
        
        .contact-link:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
            color: white;
            text-decoration: none;
        }
        
        .floating-elements {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
        }
        
        .floating-element {
            position: absolute;
            width: 20px;
            height: 20px;
            background: linear-gradient(45deg, #90cee2, #0d3f52);
            border-radius: 50%;
            opacity: 0.1;
            animation: floatUp 8s infinite ease-in-out;
        }
        
        .floating-element:nth-child(1) { left: 10%; animation-delay: 0s; }
        .floating-element:nth-child(2) { left: 20%; animation-delay: 1s; }
        .floating-element:nth-child(3) { left: 30%; animation-delay: 2s; }
        .floating-element:nth-child(4) { left: 40%; animation-delay: 3s; }
        .floating-element:nth-child(5) { left: 50%; animation-delay: 4s; }
        .floating-element:nth-child(6) { left: 60%; animation-delay: 5s; }
        
        @keyframes floatUp {
            0% {
                transform: translateY(100vh) scale(0);
                opacity: 0;
            }
            10% {
                opacity: 0.3;
            }
            90% {
                opacity: 0.3;
            }
            100% {
                transform: translateY(-100px) scale(1);
                opacity: 0;
            }
        }
        
        @media (max-width: 768px) {
            .privacy-hero {
                padding: 40px 20px;
            }
            
            .privacy-hero h1 {
                font-size: 2.2rem;
            }
            
            .privacy-section {
                padding: 25px;
            }
            
            .contact-links {
                flex-direction: column;
                align-items: center;
            }
        }
