        .wla-container {
            max-width: 800px;
            margin: 20px auto;
            padding: 25px;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            font-family: 'Segoe UI', Tahoma, sans-serif;
            direction: rtl;
        }
        
        .wla-section {
            background: white;
            border-radius: 12px;
            padding: 25px;
            margin-bottom: 25px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
            border-left: 4px solid #4CAF50;
        }
        
        .wla-title {
            color: #2c3e50;
            text-align: center;
            margin-bottom: 25px;
            font-size: 28px;
            font-weight: 600;
        }
        
        .wla-subtitle {
            font-size: 20px;
            color: #3498db;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px dashed #eee;
        }
        
        .wla-form-group {
            margin-bottom: 20px;
        }
        
        .wla-label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #34495e;
        }
        
        .wla-input {
            width: 100%;
            padding: 14px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 16px;
            transition: all 0.3s;
        }
        
        .wla-input:focus {
            border-color: #3498db;
            box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
            outline: none;
        }
        
        .wla-checkbox-group {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 12px;
            margin-top: 15px;
        }
        
        .wla-checkbox-item {
            background: #f8f9fa;
            padding: 12px;
            border-radius: 8px;
            border: 1px solid #eee;
        }
        
        .wla-button {
            background: linear-gradient(to right, #3498db, #2c3e50);
            color: white;
            border: none;
            padding: 16px 30px;
            font-size: 18px;
            border-radius: 50px;
            cursor: pointer;
            display: block;
            margin: 30px auto;
            width: 250px;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }
        
        .wla-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.15);
        }
        
        .wla-result {
            display: none;
            background: white;
            border-radius: 12px;
            padding: 30px;
            margin-top: 30px;
            border-top: 5px solid #4CAF50;
            animation: fadeIn 0.8s ease;
        }
        
        .wla-result-title {
            text-align: center;
            color: #27ae60;
            font-size: 24px;
            margin-bottom: 20px;
        }
        
        .wla-value {
            font-weight: 700;
            color: #e74c3c;
        }
        
        .wla-success-msg {
            background: #27ae60;
            color: white;
            padding: 15px;
            border-radius: 8px;
            text-align: center;
            margin-top: 20px;
            font-weight: 600;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        @media (max-width: 768px) {
            .wla-container {
                padding: 15px;
            }
            
            .wla-button {
                width: 100%;
            }
            
            .wla-checkbox-group {
                grid-template-columns: 1fr;
            }
        }