        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Arial, sans-serif;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            min-height: 100vh;
            color: #2c3e50;
            line-height: 1.6;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            box-shadow: 0 0 30px rgba(0,0,0,0.1);
            background: white;
            min-height: 100vh;
        }

        /* Header */
        .header {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 20px;
            position: relative;
            overflow: hidden;
        }

        .header::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            animation: shimmer 6s ease-in-out infinite;
        }

        @keyframes shimmer {
            0%, 100% { transform: rotate(0deg); }
            50% { transform: rotate(180deg); }
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .logo {
            font-size: 2.5rem;
            font-weight: bold;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .logo-subtitle {
            font-size: 1.2rem;
            opacity: 0.9;
            margin-top: 5px;
        }

        .language-switcher {
            background: rgba(255,255,255,0.2);
            padding: 10px 20px;
            border-radius: 25px;
            backdrop-filter: blur(10px);
            cursor: pointer;
            transition: all 0.3s ease;
            border: 1px solid rgba(255,255,255,0.3);
        }

        .language-switcher:hover {
            background: rgba(255,255,255,0.3);
            transform: translateY(-2px);
        }

        /* Navigation */
        .nav-section {
            background: linear-gradient(90deg, #4facfe 0%, #00f2fe 100%);
            padding: 0;
        }

        .nav-container {
            display: flex;
            flex-wrap: wrap;
        }

        .sidebar {
            background: rgba(255,255,255,0.95);
            width: 250px;
            padding: 30px 0;
            backdrop-filter: blur(10px);
        }

        .nav-item {
            display: block;
            padding: 15px 30px;
            color: #2c3e50;
            text-decoration: none;
            font-weight: 500;
            border-right: 4px solid transparent;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
	   .nav-item.active {
            background: rgba(79, 172, 254, 0.15);
            border-right-color: #4facfe;
            color: #1e3799;
        }
        .nav-item::before {
            content: '';
            position: absolute;
            top: 0;
            right: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(79, 172, 254, 0.1), transparent);
            transition: right 0.5s ease;
        }

        .nav-item:hover {
            background: rgba(79, 172, 254, 0.1);
            border-right-color: #4facfe;
            transform: translateX(-5px);
            color: #1e3799;
        }

        .nav-item:hover::before {
            right: 100%;
        }

        .nav-divider {
            height: 1px;
            background: linear-gradient(90deg, transparent, #667eea, transparent);
            margin: 5px 20px;
        }

        /* Main Content - שונה מכתום ללבן עם הדגשות כחולות */
        .main-content {
            flex: 1;
            padding: 40px;
            background: linear-gradient(45deg, #ffffff 0%, #f8fafd 50%, #e8f2ff 100%);
            position: relative;
        }

        .main-content::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(102,126,234,0.05)"/><circle cx="75" cy="75" r="1" fill="rgba(118,75,162,0.05)"/><circle cx="50" cy="10" r="0.5" fill="rgba(79,172,254,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
            opacity: 0.3;
            pointer-events: none;
        }

        /* דף הבית - בגוון כחול מתאים */
        .page-title {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 20px;
            border-radius: 15px;
            margin-bottom: 30px;
            box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.2);
            position: relative;
            z-index: 1;
        }

        .page-title h1 {
            color: white;
            font-size: 2rem;
            text-align: center;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
        }

        .main-title {
            text-align: center;
            margin-bottom: 40px;
            position: relative;
            z-index: 1;
        }

        .main-title h2 {
            font-size: 3rem;
            background: linear-gradient(45deg, #667eea, #764ba2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 10px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
        }

        .main-title .subtitle {
            font-size: 1.8rem;
            color: #2c3e50;
            font-weight: 300;
        }
	.company-subtitle {
            font-size: 2rem;
            background: linear-gradient(45deg, #4facfe, #00f2fe);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 600;
        }
        .content-card {
            background: rgba(255,255,255,0.95);
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 15px 35px rgba(102, 126, 234, 0.15);
            backdrop-filter: blur(15px);
            border: 1px solid rgba(102, 126, 234, 0.1);
            margin-bottom: 30px;
            position: relative;
            z-index: 1;
            overflow: hidden;
        }

        .content-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
            transition: left 0.8s ease;
        }

        .content-card:hover::before {
            left: 100%;
        }
   .description {
            font-size: 1.3rem;
            line-height: 2;
            text-align: center;
            margin-bottom: 30px;
            color: #34495e;
        }

        .description p {
            margin-bottom: 20px;
            position: relative;
            padding: 15px;
            border-radius: 10px;
            background: linear-gradient(45deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
        }
  .download-links {
            text-align: center;
            margin: 30px 0;
            position: relative;
            z-index: 1;
        }

        .download-links p {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: #34495e;
            line-height: 1.8;
        }

        .download-links a {
            color: #667eea;
            text-decoration: none;
            font-weight: bold;
            padding: 10px 20px;
            border-radius: 25px;
            background: linear-gradient(45deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
            transition: all 0.3s ease;
            display: inline-block;
            margin: 5px;
        }

        .download-links a:hover {
            background: linear-gradient(45deg, #667eea, #764ba2);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
        }

        .instructions {
            background: rgba(255,255,255,0.95);
            padding: 30px;
            border-radius: 15px;
            margin: 30px 0;
            box-shadow: 0 10px 25px rgba(102, 126, 234, 0.1);
            position: relative;
            z-index: 1;
        }

        .instructions h3 {
            color: #667eea;
            font-size: 1.5rem;
            margin-bottom: 20px;
            text-align: right;
        }

        .instructions p {
            font-size: 1.1rem;
            margin-bottom: 15px;
            text-align: right;
            color: #34495e;
            line-height: 1.6;
        }

        .instructions img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            margin: 15px 0;
        }

        .image-container {
            text-align: center;
            margin: 20px 0;
        }

        .contact-section {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            margin-top: 40px;
            position: relative;
            z-index: 1;
            box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
        }

        .contact-section h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
        }

        .contact-section p {
            font-size: 1.2rem;
            line-height: 1.8;
        }

        .contact-section a {
            color: #e8f2ff;
            text-decoration: none;
            font-weight: bold;
            padding: 5px 10px;
            border-radius: 5px;
            transition: all 0.3s ease;
        }

        .contact-section a:hover {
            background: rgba(255,255,255,0.2);
            color: white;
        }

  

        /* מחיר - בגוונים כחולים כמו הכותרת */
        .price-section {
            text-align: center;
            margin: 40px 0;
            padding: 30px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border-radius: 15px;
            box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
            position: relative;
            overflow: hidden;
        }

        .price-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: conic-gradient(from 0deg, rgba(255,255,255,0.1), transparent, rgba(255,255,255,0.1));
            animation: rotate 4s linear infinite;
        }

        @keyframes rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .price-section h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
        }

        .paypal-container {
            margin: 30px 0;
            position: relative;
            z-index: 1;
        }

        .paypal-container form {
            display: inline-block;
            margin: 0;
        }

        .paypal-container input[type="image"] {
            transition: all 0.3s ease;
            border-radius: 10px;
        }

        .paypal-container input[type="image"]:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
        }

        .action-buttons {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-top: 40px;
            flex-wrap: wrap;
        }

        .btn {
            display: inline-block;
            padding: 15px 30px;
            text-decoration: none;
            border-radius: 25px;
            font-weight: bold;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .btn-primary {
            background: linear-gradient(45deg, #667eea, #764ba2);
            color: white;
        }

        .btn-secondary {
            background: linear-gradient(45deg, #4facfe, #00f2fe);
            color: white;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(255,255,255,0.2);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.6s ease, height 0.6s ease;
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
        }

        .btn:hover::before {
            width: 300px;
            height: 300px;
        }

        .btn span {
            position: relative;
            z-index: 1;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                text-align: center;
                gap: 20px;
            }

            .logo {
                font-size: 2rem;
            }

            .nav-container {
                flex-direction: column;
            }

            .sidebar {
                width: 100%;
                order: 2;
            }

            .main-content {
                padding: 20px;
                order: 1;
            }

            .main-title h2 {
                font-size: 2rem;
            }

            .action-buttons {
                flex-direction: column;
                align-items: center;
            }
	  .download-links a {
                display: block;
                margin: 10px 0;
            }
        }

        /* Loading animation */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .content-card, .instructions, .contact-section, .price-section {
            animation: fadeInUp 0.8s ease-out;
        }

        .content-card:nth-child(2) {
            animation-delay: 0.2s;
        }
	.instructions {
            animation-delay: 0.4s;
        }

        .contact-section {
            animation-delay: 0.6s;
        }
        .price-section {
            animation-delay: 0.4s;
        }